Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
129 views

webbrowser not navigating if you're not looking at it

I got a strange problem. I have a tabcontrol and 3 tabs. On every tab i got a webbrowser control on it. They all navigate to a website. But it only navigates if you're actually looking at the ...
3
votes
3answers
5k views

PostbackUrl vs NavigateUrl

Can someone tell me the different between LinkButton.PostBackUrl and HyperLink.NavigateUrl? I've got a asp.net 2.0 application that uses both methods throughout the application and everything works ...
2
votes
1answer
151 views

html parser error message: Parser Error Message: The server tag is not well formed

I am getting the error Parser Error Message: The server tag is not well formed. on the code line below: <asp:HyperLink ID="imgFileType" ImageUrl="images/Icon_Pdf.gif" ...
1
vote
1answer
135 views

asp.net mvc menu,navigateUrl="~/Views/User/Index.aspx'-resource not found

I have created an asp.net MVC application.I created a asp:menu in the master page and I was trying to include the menu items and the sub menu items.When I tried to include the view pages by ...
1
vote
3answers
180 views

How to cancel or dispose current navigation at WebBrowser element

I am developing a C#, .NET Framework 4.0 application. It visits some pages with an order. Sometimes I have to move to the next page without waiting for the previous one to finish the job. How can I ...
1
vote
3answers
905 views

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 ...
1
vote
3answers
687 views

NavigateUrl and EVAL

I am trying to Navigate URL in this way <asp:HyperLink runat="server" NavigateUrl='javascript:NavigateUrl("<%#Eval("TicketID")%>","<%=RedirectURL %>");'><%# ...
1
vote
1answer
785 views

Adding dynamic links using NavigateURL on ASP.NET (VB)

I Have this code in my page, and I want that every NavigateUrl display another page like : simple.aspx?id=1, simple.aspx?id=2, ... Where id = c Protected Sub Page_Load(ByVal sender As Object, ByVal ...
1
vote
3answers
6k views

.NET C#: WebBrowser control Navigate() does not load targeted URL

I'm trying to programmatically load a web page via the WebBrowser control with the intent of testing the page & it's JavaScript functions. Basically, I want to compare the HTML & JavaScript ...
1
vote
2answers
540 views

How to make a URL relative to a different virtual directory on the same server

I know about the notation that uses a tilde character ~ to represent the root of a website. The links below are part of a virtual directory called "MDWelcome" and while the code below "works", how ...
0
votes
1answer
39 views

pass value containing ampersand to a different page

I want to go to a different URL and pass a parameter as a query string. This value contains an ampersand. I can use Response.Redirect to do this. Response.Redirect("http://www.mysite.com/?Value=" + ...
0
votes
1answer
55 views

Setting the hyperlink value to a datagrid in asp.net

I have a datagrid that is being populated by DirectoryInfo. The columns are Name, Date & Size. The Name value is a hyperlink. The hyperlink url should be: "javascript:openFile('" & ...
0
votes
4answers
581 views

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

Prevent navigateurl property from firing and instead go to the click event

I've a Panelbar with some PanelItems in it. The PanelItems have got a navigateUrl property. Whenever I right click, and select the "Open in New tab/Window", I want the page to be redirected to the ...
0
votes
3answers
869 views

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: <asp:HyperLink NavigateUrl="Page1.aspx" runat="server" Text="Page 1" /> ...
0
votes
2answers
356 views

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

I am having links like: <asp:HyperLink ID="lnkTitle" runat="server" CssClass="itemTitle" > </asp:HyperLink> <a id="linkOwner" runat="server" ...
0
votes
1answer
354 views

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. <asp:TreeView ID="treeviewSIP" runat="server" ...
0
votes
2answers
713 views

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" %> <asp:HyperLink runat="server" ...
0
votes
2answers
329 views

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: <a class="blue13" ...
0
votes
1answer
158 views

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 this ...
0
votes
1answer
422 views

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 ...
0
votes
3answers
222 views

Why doesn't the webpage appear? What is missing in my code?

I'm trying to make my own webbrowser with C#, my wpf application seems to be correct. but it's still missing something. the webpage doesn't appear. :s Does someone have an idea? Here's my code in C# ...
0
votes
1answer
2k views

using hyperlink column in gridview and getting 'does not exist in the current context' error in page_load

HI, I have a HyperLink column in a gridview that when clicked should navigate the user to another page. I pass parameters to the page using a querystring. I am implemeting this action in the grid's ...
0
votes
2answers
1k views

How to deal with special characters in ASP.NET's HyperLink.NavigateUrl?

I am currently having troubles figuring out how to handle a filepath to be (dynamicly) passed out to a HyperLink control's NavigateUrl property. Let's say that I'm trying to refer to a file named ...
0
votes
3answers
6k views

C# Change dynamically NavigateUrl HyperLinkField

In my code i create a HyperLinkField object. Depending on a database field value, i want to set the NavigateUrl property. This is my problem, i don't know how. With: objHF.DataNavigateUrlFields = ...