Is there a way to do something like this:

<asp:HyperLink id="MyLink"
  NavigateUrl="../mypage.aspx?id=<%= pageid %>"
  runat="server">My Page</asp:HyperLink>

... except in a way that works?

I want to do this inline in a normal HyperLink control that is not databound.

Edit: Got some good answers, but what I'm looking for is how to do this specifically in a normal HyperLink (not in a DataGrid/GridView) and inline (not via a function call or code behind).

Updated my question to clarify.

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

You could do this in the codebehind:

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        string pageid = "123";
        MyLink.NavigateUrl = string.Format("../mypage.aspx?id={0}", pageid);
    }
}

UPDATE:

Now that @Marko Ivanovski pointed me in the comments that this hyperlink is inside a GridView which I didn't notice in the beginning the easiest would be to use databinding (<%# syntax):

<asp:TemplateColumn>
    <ItemTemplate>
        <asp:HyperLink 
            id="MyLink" 
            NavigateUrl='<%# Eval("pageid", "~/mypage.aspx?id={0}")  %>'
            runat="server">
        My Page
        </asp:HyperLink>
    </ItemTemplate>
</asp:TemplateColumn>

In this case pageid is a property of the data source.


UPDATE 2:

Do you really need a server side control? How about:

<a href="<%= this.ResolveUrl("~/mypage.aspx?id=" + pageid) %>">
    My Page
</a>
link|improve this answer
He mentions that the link is inside a GridView :) – Marko Aug 29 '10 at 9:05
@Marko, right, thanks for pointing this out. I didn't read the question carefully :-) – Darin Dimitrov Aug 29 '10 at 9:18
No probs - +1 for a good solution – Marko Aug 29 '10 at 9:21
Thanks for the solutions. I actually did want to find out how to do it outside a DataGrid/GridView. I'm using just a normal hyperlink. I updated the question to clarify. Also I'm looking for how to do it inline as opposed to using the .NavigateUrl property from codebehind. – dtc Aug 29 '10 at 9:45
@metanito, this can't be done in the circumstances you describe. I would recommend you codebehind or simple HTML (I know that WebForms could have side effects to people using them too much - you simply forget the basics of how the web works). – Darin Dimitrov Aug 29 '10 at 9:49
show 2 more comments
feedback

You can actually write a simple string method in your codebehind file.

Example

public string formatUrl(string pageId) {
    return "../mypage.aspx?id=" + pageId;
}

And then use it like..

<asp:HyperLink id="MyLink" NavigateUrl="<%= formatUrl(pageid) %>" runat="server">My Page</asp:HyperLink>

provided pageid exists

link|improve this answer
2  
This is something I tried, but the code doesn't get run and it comes out as: localhost/MySite/<%= formatUrl(pageid) %> – dtc Aug 29 '10 at 9:43
@metanaito: Same. Have you solved this problem? – abatishchev Nov 19 '11 at 14:39
feedback

Your Answer

 
or
required, but never shown

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