problem with <asp:HyperLink ------

  • Thread starter Thread starter newhorizon
  • Start date Start date
you may be doing: HyperLink1.NavigateUrl += webSite.Text;
if thats the case just remove the +
 
then you need to add "http://" to your string, like this:
HyperLink1.NavigateUrl = "http://" + webSite.Text;
 
it works allright thank you Alex.

then you need to add "http://" to your string, like this:
HyperLink1.NavigateUrl = "http://" + webSite.Text;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top