How to put ‘<‘ and ‘>’ inside a linkbutton’s text property (asp.net)? I tried <asp:LinkButton runat="server" ID="lbEdit" Text="<edit settings>"></asp:LinkButton> but then the link doesn’t show up.
How to put ‘<‘ and ‘>’ inside a linkbutton’s text property (asp.net)? I tried
Share
Yeah, that will render with the exact text
<edit settings>which the browser will consider another tag.Try
Text="&lt;edit settings&gt;"