is there anything we can do in the code behind to render this:
<asp:HyperLink ID="lnk" NavigateUrl="~/test.aspx" runat="server">link text</asp:HyperLink>
as text only:
link text
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could create a user control that has two controls, a
HyperLinkand aLabel(or aLiteralControl) and switch the visibility between those two.Add public properties to the user control for all properties that you require, e.g.
NavigateUrl,Text, etc.