ASP.NET Hyperlinks asp:HyperLink vs A href -


in asp.net when should use:

<asp:hyperlink    id="home"    runat="server"   text="home"   navigateurl="./home.aspx"> 

and when shoudl use

<a href="./unsignedvssignedtut.aspx">home</a>  

?

asp.net server controls give more abilities (e.g. event handling, more properties). html controls on other hand simpler.

both controls fine. can start html control , migrate asp:hyperlink if need later.

you can @ these discussions:


Comments

Popular posts from this blog

c++ - list<myClass<int> * > sort -

c - Defining floating point constants, how many digits are useful? -

C# Apple Bonjour - how to monitor service records within Windows -