vote up 1 vote down star

Hey guys... I got this code in order to build an url for the link using a querystring from the current page. The problem is.... It doens't work. Any suggestions?

<asp:hyperlink ID="link1" runat="server" NavigateUrl='<%@("Equipamentos.aspx?ID_Cliente=")+Request.QueryString    ("ID_Cliente").trim.tostring()%>'>Equipamentos</asp:HyperLink>
flag

I'd suggest you say what "it doesn't work" means. – John Saunders Jul 2 at 13:52
The link appears as a link but it doesn't have any link..... – v3ga Jul 2 at 13:54
What is the generated HTML? – John Saunders Jul 2 at 13:55

7 Answers

vote up 1 vote down check

Gah, my eyes! Try doing this in code behind instead:


link1.NavigateUrl = "Equipamentos.aspx?ID_Cliente=" & Request.QueryString("ID_Cliente").Trim().ToString()

You have to use "&" instead of "+" because this is VB.NET, not C#.

link|flag
Thank you very much... At least someone nice with a useful answer – v3ga Jul 2 at 14:01
The "ToString()" at the end is when you are not sure that Trim() returns String?:) – Kamarey Jul 2 at 14:34
2  
Actually "+" works for string concatenation, too. "&" is preferred because there's no chance that it will do an implicit cast followed by an arithmetic add. – RolandTumble Jul 2 at 14:45
vote up 0 vote down

As I know you can't use "<%= %>" with server controls. So you can:

1. Leave it as a server control and follow Andrew Hare's (or similar) answer.
2. Use client control: "<a />" and "<%= %>" should work.
link|flag
vote up 1 vote down

Your ASP.NET code should look like this:

<asp:HyperLink ID="link1" runat="server" NavigateUrl=''>Equipamentos</asp:HyperLink>

And then add this in code behind:

this.link1.NavigateUrl = string.Format("Equipamentos.aspx?ID_Cliente={0}", Request.QueryString["ID_Cliente"].Trim());
link|flag
+1 for good string formating. – Phil Jul 2 at 14:32
vote up 0 vote down

Same question - Do you mean it crashes with an error message or gives you a link but not the one you want ?

link|flag
vote up 0 vote down

You are not going to be able to set the NavigateUrl of the link in this way. Try something like this:

<asp:hyperlink 
    ID="link1" 
    runat="server">Equipamentos</asp:HyperLink>

And then in your codebehing or a script tag do this:

link1.NavigateUrl = "Equipamentos.aspx?ID_Cliente=" 
    + Request.QueryString("ID_Cliente").Trim().ToString();
link|flag
vote up 0 vote down

The

<%@ %>

tags are for directives, such as registering controls. You need a

<%= %>

tag, which is called a code evaluation block.

Something like

<%= (5+5).ToString() %>

is what you need - try your code in there.

link|flag
I have tried that... it doesn't... and also with de %# – v3ga Jul 2 at 13:57
vote up 0 vote down

Try this instead :

<asp:hyperlink ID="link1" runat="server" 
  NavigateUrl='<%= ("Equipamentos.aspx?ID_Cliente=") 
  + Request.QueryString("ID_Cliente").Trim().ToString() %>'>
  Equipamentos</asp:HyperLink>
link|flag
1  
Why downvote without an explanation ? – Canavar Jul 2 at 13:58
Why downvote without an explanation ? Exactly, I have done this way in many places in my project. – Shiva Jul 2 at 16:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.