I am using hyperlink field (title) at access 2003 and use datagrid to display this hyperlink in it. But when display datagrid it is give me text and hyperlink like this:
Click her #../email.aspx#

and when I click on it, it doesn’t take me to URL

how can I display text only in datagrid without hyperlink?

This is the code for datagrid :
<asp:datagrid id="DataGrid2" style="Z-INDEX: 104; LEFT: 104px; POSITION: absolute; TOP: 184px"
runat="server" AutoGenerateColumns="False">
<Columns>
<asp:HyperLinkColumn DataNavigateUrlField="title" DataTextField="title" NavigateUrl="title"></asp:HyperLinkColumn>
</Columns>
</asp:datagrid>

Could help pls?
Thanks