Suppose on your computer some people use their skype account and when you try to login to your account you see all those skype names in the username and you want to remove them
here is the solution
here is the solution
<asp:TemplateField HeaderText="EMail" SortExpression="EMail"> <ItemTemplate>
<asp:HyperLink ID="hp" runat="server"
CommandArgument='<%# Eval("SysID", "{0}") %>'
NavigateUrl='<%# String.Format("~/ReportViewer.aspx?RevID= {0}
& User={1}", Eval("ID"), Eval("USER")) %>' Target="_blank" %>'>
</asp:HyperLink>
</ItemTemplate> </asp:TemplateField>
<asp:HyperLink ID="HyperLink1" runat="server" Text='<%# Eval("EMail") %>'
NavigateUrl='<%# Eval("EMail", "mailto:{0}") %>'></asp:HyperLink>
HyperLinks in the GridView Row link use as Mailto:<asp:TemplateField HeaderText="EMail" SortExpression="EMail"> <ItemTemplate>
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# Eval("EMail", "mailto:{0}") %>'
Text='<%# Eval("EMail") %>'></asp:HyperLink>
</ItemTemplate> </asp:TemplateField>