<asp

ataGrid ID="DataGrid1" runat="server" AutoGenerateColumns="false"
BackColor="#FFFFFF" BorderColor="tan" BorderWidth="1px" BorderStyle="Solid" CellPadding="2"
CellSpacing="0" Font-Name="Verdana" Font-Size="9pt" DataKeyField="id">
<columns>
<asp:BoundColumn HeaderText="客户编号" DataField="id">
<headerstyle Width="60px">
</headerstyle>
</asp:BoundColumn>
<asp:BoundColumn HeaderText="客户名称" DataField="com_name">
<headerstyle Width="260px">
</headerstyle>
</asp:BoundColumn>
<asp:BoundColumn HeaderText="联系人" DataField="com_con">
<headerstyle Width="60px">
</headerstyle>
</asp:BoundColumn>
<asp:BoundColumn HeaderText="行业类别" DataField="com_type">
<headerstyle Width="80px">
</headerstyle>
</asp:BoundColumn>
</columns>
<headerstyle BackColor="DarkRed" ForeColor="white" Font-Bold="true">
</headerstyle>
<itemstyle ForeColor="DarkSlateBlue">
</itemstyle>
<alternatingitemstyle BackColor="Beige"/>
</asp

ataGrid>
请问我想把客户名称做超连接到他们自己的网站,类似与asp里的****.asp?url=<%=rs("url"

%>,在ASP。NET里用HyperLink控件是怎么实现的呢? 谢了!!!