tags:

views:

37

answers:

1

I want to send hyperlink by attach it with URL with the help of query string method. For instance in a web page containing three links like

google.com 

yahoo.com

facbook.com

now suppose user click on yahoo.com at this point i want to send it by attaching with url like www.something.aspx?uniqueid=google+com ..........some thing like that

A: 

How about this:

<asp:HyperLink runat="server" NavigateUrl="http://www.something.com/something.aspx?uniqueid=google.com" Text="http://www.google.com/"&gt;&lt;/asp:HyperLink&gt;

This will display the text "http://www.google.com/" on the page, but the link itself will be via your "something.aspx" page.

Sam Huggill