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
0
votes
1 answer

What types of values can be passed in NavigateURL?

I have a hyperlink using NavigateURL in my gridview to pass field values in my table. I was wondering if it were possible to pass other values, other than the table values, in the query string as well? Such as variables in my code behind? If so, how…
Slae
  • 335
  • 5
  • 18
0
votes
1 answer

Set NavigateUrl in RowDataBound event

I currently have a gridview with a column of hyperlinks to edit and delete a customer. I need to use hyperlinks in my case, but was wondering how else I could pass other values to the pages I go to? Right now I can pass table values, but what about…
Slae
  • 335
  • 5
  • 18
0
votes
1 answer

Navigating with Gecko Web Browser in C#

I'm using Geckofx 33.0.9.0 in my C# application, and I'm having a problem with navigating. Generally it works well, I enter a URL and it takes me to a page. The problem is that if I enter a URL for a page that doesn't exist, it gives me a MessageBox…
WolfyD
  • 865
  • 3
  • 14
  • 29
0
votes
1 answer

Firing WebBrowser.DocumentCompleted event whilst in a loop

I have a simple app I am developing that needs to iterate through a list of URLs which are passed to a WebBrowsers Navigate function in a for each loop. I was hoping to see the DocumentCompleted event firing after each call of the Navigate function…
CJH
  • 1,266
  • 2
  • 27
  • 61
0
votes
1 answer

NavigateUrl is not working with SelectedNodeStyle

I'm trying to get SelectedNodeStyle to work with NavigateUrl without success. The style is not applied when clicking on nodes.
jgauffin
  • 99,844
  • 45
  • 235
  • 372
0
votes
1 answer

how add a hyperlink in pdf page to page using itextsharp

I want to add or create a hyperlink in bottom of the PDF page and it will redirecting to another page by using itextsharp. and next thing is for example if i have 50 pages PDF file. add 3 pages to it. and in 50th page i want 2 hyperlinks at bottom…
0
votes
0 answers

What is use of Datanavigateurlformatstring of hyperlink in gridview?

How to use Datanavigateurlformatstring of hyperlink in gridview? I want to display page with the name of product like http://localhost:55724/Admin/Category/Update/computer when I clicked on computer in gridview, it says resource not found.…
0
votes
1 answer

C# asp page to display multiple urls on a timer

I'm working on a project where I have 2 iframes displaying different urls. I need to take the first iframe and have that page cycle through 3 or 4 different URLs every 60 seconds. So, for example, it would show http://stackoverflow.com in the iframe…
0
votes
2 answers

Set custom NavigateUrl value from gridview c#

I have a gridview in which I want to load a users details. In this gridview I want to make the users phone number a hyperlink. This is so they can click on the link and it automatically rings the number using the phone software stored on the their…
wubblyjuggly
  • 919
  • 3
  • 13
  • 33
0
votes
1 answer

How to programmatically navigate a WebBrowser

I made some LinkLabels on my Form, they are the link for each chapter of a eBook. According to that, I wanted to navigate on my WebBrowser using that labels but the browser isn't navigating not even for a legit Uri like "www.google.com". If I click…
João Silva
  • 531
  • 4
  • 21
  • 40
0
votes
1 answer

HTML/Javascript simple redirect -works in IE/Opera but not in Chrome/Firefox

I have a HTML page, which just creates a URL to a daily MP3 Can someone please help me, i get it to work in IE and Opera, but not in Chrome and FireFox The page simply does nothing in Chrome/Firefox, whilst it downloads the file in…
Peter PitLock
  • 1,823
  • 7
  • 34
  • 71
0
votes
1 answer

Passing variables through navigateURL to open iFrame as3

By using NavigateURL I can easily pass variables as below through Flash to paypal, this works no problem and can include all the data required. var req:URLRequest = new URLRequest("https://www.paypal.com/cgi-bin/webscr"); var reqVars:URLVariables =…
esadude
  • 37
  • 1
  • 10
0
votes
1 answer

Understanding jQuerymobile navigation model (how to clear all state when changing pages)

I'm apparently having some trouble understanding page transitions in jquerymobile. It seems that when I navigate from one page to another (either via a simple anchor href, or $.mobile.navigate), some of the state is passed along. For example, let's…
kane
  • 5,465
  • 6
  • 44
  • 72
0
votes
2 answers

display and navigate a web page from a flex tab

i have a flex project that runs in using flash player 11. What i am trying to achive is to have a tab of my project which, when loaded displays a web page within the tab. I do not want to naviagate away from my project but display it within my tab…
kris
  • 90
  • 1
  • 1
  • 12
0
votes
2 answers

Why asp:HyperLink.NagigateUrl in user control, placed in sub-folder, contains this sub-folder?

~/Folder1/UserControl1.ascx: <%@ Control Language="C#" CodeBehind="WebUserControl1.ascx.cs" Inherits="WebApplication1.WebUserControl1" %> HyperLink1 ~/UserControl2.ascx: <%@…
abatishchev
  • 98,240
  • 88
  • 296
  • 433
1 2 3
8 9