我可以切换超链接和文本框吗?
我的 gridview 中有一个数据列,它有一个 url 或纯文本。如何切换 HTML 中的超链接?
这就是我到目前为止所拥有的...返回“查看链接...”,带或不带 url :(
<ItemTemplate>
<asp:HyperLink ID="HyperLink3" runat="server" Text="View Link..." NavigateUrl='<%# Bind("DocLink") %>' Target="_blank"></asp:HyperLink>
<asp:Label ID="Label8" runat="server" Text='<%# Bind("Details") %>'></asp:Label>
</ItemTemplate>
I have datacolumn in my gridview that has either a url, or plain text. How do I toggle a Hyperlink in the HTML?
This is what I have so far... which returns "View Link..." with or without a url :(
<ItemTemplate>
<asp:HyperLink ID="HyperLink3" runat="server" Text="View Link..." NavigateUrl='<%# Bind("DocLink") %>' Target="_blank"></asp:HyperLink>
<asp:Label ID="Label8" runat="server" Text='<%# Bind("Details") %>'></asp:Label>
</ItemTemplate>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否理解您的问题,但如果您尝试根据数据有选择地显示或隐藏 ItemTemplate 中的某个控件,请使用
OnItemDataBound
事件,使用FindControl( )
获取控件,并适当地设置每个控件的Visible
属性。如果您的 Visible 逻辑相对简单,您可以将其直接添加到您的
ItemTemplate
中。像这样的东西:I'm not sure I understand your question, but if you are trying to selectively show or hide one of the controls in your ItemTemplate depending on the data, use the
OnItemDataBound
event, useFindControl()
to get the controls, and set theVisible
property on each appropriately.If your logic for Visible is relatively simple, you can add it right to your
ItemTemplate
. Something like: