How to give hyperlink feature for the text of gridview literal template.
<asp:TemplateField headertext="Question">
<ItemTemplate>
<asp:Literal id="Literal1" runat="server" text='<%# Eval ("Questions") %>' ></asp:Literal>
</ItemTemplate>
<ItemStyle Font-Size="Small" />
</asp:TemplateField>
I want to give hyperlink feature for the text of Literal1
Go to the complete details ...