Questions tagged [navigateurl]

Loads the document at the location indicated by the specified Uri into the WebBrowser control, replacing the previous document.

The WebBrowser control maintains a history list of all the Web pages visited during a browsing session. When you call this overload, the WebBrowser control navigates to the specified URI and adds it to the end of the history list. Use the GoBack method to return the control to a previous page in the navigation history. Use the GoForward method to return to a later page in the navigation history after navigating backward.

128 questions
1
vote
2 answers

navigate.push is not a function

I got the error in react reuter dom version related to navigate.push is not a function. this following error disturbing my whole clean code, It'll be great if somebody helps me to resolve this. This is my code import { Link, useNavigate } from…
Vishal Mishra
  • 131
  • 4
  • 11
1
vote
0 answers

WebView2 with arguments and without arguments

I'm trying to start two WebView2 browsers. 1 with arguments and 1 without arguments. But i can't get it to work, i get a error…
Desz
  • 31
  • 7
1
vote
0 answers

how to hide External URL while redirecting in angular

Trying to redirecting to External URL but URL should be hidden or dummy URL should be in address bar I have used window.location.href = URL; this is working but URL is visible and have lost control to angular application.
Vijay
  • 33
  • 4
1
vote
2 answers

How to pass value(index) through navigateByUrl

I have created two components home where I will show minute details about a Employee, and view where I will show complete details about a Employee. My home.component.html is as follows:
Welcome Home

Akash
  • 59
  • 9
1
vote
4 answers

Navigate a URL with Query string values on click of hyperlink

I have a control with 'email' and 'password' textboxes and a 'autoLogin' checkbox. All are web form controls (not html controls). And there is a 'Login' hyperlink. When I click on heperlink, I want to move to other page using NavigateUrl property…
karthik k
  • 3,751
  • 15
  • 54
  • 68
1
vote
0 answers

hyperlink eval navigateurl complete path not required

In database I have a column for website name. This website I am displaying inside a listview in a hyperlink field. I want that when user click on the link it should redirect to the website in new tab but right now when clicking the folder structure…
Anurag
  • 111
  • 8
1
vote
3 answers

How to hide a query string parameter in the url

I've a panel bar with some items in it. When I right click on the items and if I select "open in new tab", I need to open the link in a new tab. For eg. if my page is "http:localhost/MyPage" My grid is: Name abc bcd cde When I click on the second…
Noel
  • 83
  • 2
  • 2
  • 8
1
vote
1 answer

Hyperlink in Popup window in C#

the following Hyperlink is in the popup written in C#. var hypLink = new HyperLink { Text = "Order Nummer", NavigateUrl = "~/Order.Page.aspx?OrderID=00001001" }; The above code is redirecting the Order.Page.aspx inside the popup. But I am…
darma
  • 25
  • 5
1
vote
4 answers

ReactJS TypeError: Cannot read property 'push' of undefined

I build my Apps and learn ReactJS My code error until now, i try to search on internet and forums but can't fix. Here my code : logout(){ localStorage.removeItem("token"); localStorage.clear(); if(localStorage.getItem('token') ===…
Winda
  • 11
  • 1
  • 2
1
vote
0 answers

How to prevent `Navigated to http://localhost:3000/` for electron-react app

Typescript just relase 3.7.3 with optional chaining, so I wanted to upgrade a project for this feature. However, after runing yarn upgrade --latest, and doing yarn start, the app will reload infinitely. After couple days of debugging. This is what I…
Jiahua Zhang
  • 511
  • 7
  • 19
1
vote
0 answers

jQuery navigate and post JSON

Apparently what I am trying to do on the front-end is incredibly unusual - I want the web browser to do a navigation event to a URL, and submit some JSON as an HTTP Post. Google says the rest of the world wants to Not Navigate using jquery $.ajax. …
user1445967
  • 1,520
  • 4
  • 14
  • 30
1
vote
1 answer

Ampersand url encoding and query string parameter issue

I have had an aspx project dumped on my lap and I have the following issue. They are calling a function within the NavigateUrl of a hyperlink and the '&'s are being encoded href="/products/automotive-glass/?position=whatever&brand=whatever" but…
Cal
  • 55
  • 1
  • 6
1
vote
3 answers

ASP.Net HyperLink's NavigateUrl changes after rendering in to HTML Anchor

I am quite new to ASP.Net. I have a Master.aspx and a Page1.aspx and Page2.aspx, all in the same directory. Master:
Anant Anand Gupta
  • 650
  • 1
  • 11
  • 22
1
vote
2 answers

Angular2 redirect from static method

Hi i have 'static class' Utils with only static methods (helpers): export class Utils { static doSomethingAndRedirect() { ...doo something... redirectTo->'/home' } } So how redirectTo code should look like?
Kamil Kiełczewski
  • 85,173
  • 29
  • 368
  • 345
1
vote
2 answers

How to collect information from navigate url and anchor link using jquery?

I am having links like: I am assigning the NavigateUrl from code behind at…
ANP
  • 15,287
  • 22
  • 58
  • 79
1 2
3
8 9