Links in master page

  • Thread starter Thread starter Samuel Shulman
  • Start date Start date
S

Samuel Shulman

Since the master page is used in pages located in many folders how can I add
relative links to the master page?

Thank you,
Samuel
 
Since the master page is used in pages located in many folders how can I
add relative links to the master page?

Are you talking about internal links to other pages in your web site / app,
or external links to public websites...?
 
Samuel Shulman said:
Since the master page is used in pages located in many folders how can I add
relative links to the master page?

You should be able to use:

<a href="~/path/to/file.aspx" runat="server">Link title</a>
 
Back
Top