hyperlink

  • Thread starter Thread starter amatuer
  • Start date Start date
A

amatuer

Hi,

I am trying to open a website from a hyperlink. hw do i do that?

Please help. thanks
 
Set the NavigateURL property
of if it is a server control, then write an event handler for click
event and in that handler use Response.Redirect() method

I think these simple questions can be answered if you have a book on
the topic. I think you need more study of the language and its
features before starting coding.
 
amatuer said:
I am trying to open a website from a hyperlink. hw do i do that?

If you are talking about Windows Forms, check out
'System.Diagnostics.Process.Start'.
 
Back
Top