HyperLink not clickable

x7mni

New Member
I declared a hyperlink in asp.net as follows;\[code\] <asp:HyperLink ID="hyp" runat="server" Text="new user"></asp:HyperLink>\[/code\]but, I am not getting the underline link, where I could click on it and go to a new page.\[code\]HyperLink hyp = new HyperLink();hyp.ID = "hyp";hyp.NavigateUrl = "http://localhost/";hyp.Visible = true;Page.Controls.Add(hyp);\[/code\]
 
Back
Top