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
2 answers

How to remove portion of url when using NavigateURL

I am using NavigateURL to dynamically pull in the url of products on a receipt page. Here is the exact code: "><%#Eval("Product.Name")%> It is placing "/checkout/~/" in each of the…
Joe
  • 633
  • 4
  • 11
  • 18
0
votes
1 answer

How to reference a .Net web control's selected value in NavigateURL

I have an ASP.Net page with a GridView. In one of the GridView cells there's a HyperLink control and its NavigateURL property is set like so: NavigateUrl='<%# "~/telecom/SmartPhoneInventory.aspx?IMEI=" + Eval("IMEI") %>' There's a RadioButtonList…
Melanie
  • 3,021
  • 6
  • 38
  • 56
0
votes
2 answers

Link to the correct item page by selecting the list of items in for loop

This is my jsp page that retrieve the list of items from database using for loop <% itemManager mgr = new itemManager(); Item[] items = mgr.getAllItems(); for(int i = 0; i < items.length; i++){ %>
0
votes
1 answer

prevent hyperlink control from reordering navigateurl attribute

I created a hyperlink control extended from HyperLink, but I do not know how to override the navigateurl property, the problem is: im using a jquery library that depends on the url to look like…
Ayyash
  • 4,257
  • 9
  • 39
  • 58
0
votes
1 answer

How to dynamically change NavigateURL string?

How to replace the URL.aspx part of this string in VB code behind while maintaining querystring? OR How to…
DreamTeK
  • 32,537
  • 27
  • 112
  • 171
0
votes
1 answer

Backbone js after click event and navigate to new adress view is not changed

Hello stackoverflowers !!! I have problem with render view after click event : var TablesView = Backbone.View.extend({ events: { "click li" : "openMenuItem" }, openMenuItem: function(e){ currentLink =…
Makromat
  • 1,540
  • 5
  • 26
  • 47
0
votes
1 answer

.NET navigate not working?

I have a separate form with a WebBrowser control. The script won't run if I try to invoke it from another form but it does run if I invoke it in the same form. Dim JS As New jsEncrypt JS.WebBrowser.Navigate(New…
0
votes
1 answer

IWebExplorer2 Navigate fails with Error reading characters of string

IWebExplorer2::Navigate(..) (or Navigate2) is failing to navigate some urls. Like while navigating following url: *https://www.facebook.com/dialog/oauth/?api_key=&redirect_uri=&state=NONE* , I am getting the error **Error reading…
Sajad Karim
  • 321
  • 3
  • 18
0
votes
2 answers

ASP.Net NavigateUrl to remote server

Is there a way to open a PDF file from a remote server directory inside a gridview using NavigateUrl? I'm able to retrieve the file number from the textbox and generate the link, but when you click on the link nothing happens. Could my NavigateUrl…
g_shockTan
  • 325
  • 2
  • 8
  • 15
0
votes
1 answer

treeview problem

have a treeview control in ASP.NET and C#. Root node (This is fixed) ---Parent Node 1 ( Parent node and child are populated from the database directly. ) ----Child node1 ----Child node2 ---Parent node 2 Now When a value is added to a…
user175084
  • 4,550
  • 28
  • 114
  • 169
0
votes
1 answer

How can I add some conditional Javascript to my Asp Hyperlink's NavigateUrl property?

So I have a Hyperlink on my asp.net page. When the person clicks that link, it carries out some action. Now I want to be able to add a javascript alert (confirm, actually) as to whether the user is SURE he/she wants to carry out the action? If yes,…
Freakishly
  • 1,533
  • 5
  • 32
  • 61
0
votes
2 answers

Navigating to DNN Module

I'm forming a newsletter with links to various html modules within my DNN website. I have access to each of their ModuleID's and I'm wanting to use that to get the url. The current approach (made by a third party developer) worked, but only to a…
Mitchell
  • 253
  • 1
  • 5
  • 16
0
votes
2 answers

how to use TabID?

i wanna access a link using tab id instead of Static URL as my URl is Response.Redirect("~/Activities/Calendar.aspx?date=" + DateTime.Now.ToString("MM/dd/yyyy")) and i use the following Code Dim objModuleController As…
omnia Mm
  • 157
  • 5
  • 16
0
votes
2 answers

PostbackUrl in relation to Master pages

Let's say we have two pages: pageX.aspx, and pageY.aspx. These pages utilize a master page along the top of the browser, where the user has several options to change the language of the site. These language choices are in the form of image…
CptSupermrkt
  • 6,844
  • 12
  • 56
  • 87
0
votes
1 answer

Execute webservice method async before RootFrame.Navigating event windows phone 7

I want to make an authentication in the App.xaml.cs class that if user exists in the database I want to direct user to member page otherwise want to direct user public page. I know how to use rootframe navigating but the problem is even though my…
albatross
  • 455
  • 2
  • 8
  • 27
1 2 3
8
9