Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1059241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:08:29+00:00 2026-05-16T18:08:29+00:00

How can I dynamically set a stand alone(not in gridview) hyperlink control’s NavigateUrl property

  • 0

How can I dynamically set a stand alone(not in gridview) hyperlink control’s NavigateUrl property inline in the aspx page?

I have tried to do the following, but it did not work.

<asp:HyperLink id="MyLink"
  NavigateUrl="../mypage.aspx?id=<%= pageid %>"
  runat="server">My Page</asp:HyperLink>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T18:08:29+00:00Added an answer on May 16, 2026 at 6:08 pm

    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>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a page where the background colour can be set dynamically. In some
How can I set label's border which is dynamically generated (Not from Interface Builder)?
I know you can not set a key value dynamically, but what about the
I have a Query that the datasources it is set to can change dynamically.
I have a page where the user can dynamically add file upload boxes. Adding
I want to set up a single virtual host that can dynamically handle all
Long time lurker, first time poster. I have a page that can dynamically (with
I have a button on a page with an onClick I dynamically set via
I'm using the iconField property of the Flex Tree to dynamically set the icon
I can dynamically append select control to DOM,after appending it to DOM,I wanna change

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.