Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的数据库中,我有一个包含网站和名称列表的表格。我需要用名称填充我的 gridview HyperLinkField,每个名称都链接到数据库中对应的 URL。
在过去,我已经为链接到我自己网站中另一个页面的简单查询完成了此操作,但我找不到任何我现在想要做的事情。
假设数据源中的项目有两个属性WebsiteName和Link. 现在试试这个:
WebsiteName
Link
<asp:GridView runat="Server" id="gv1" AutoGenerateColumns="False" GridLines="None"> <Columns> <asp:HyperLinkColumn HeaderText="Links" DataNavigateUrlField="Link" DataTextField="WebsiteName" /> </Columns> </asp:GridView>