如果 Hyperlink.Text = 0 如何使 Hyperlink.Visible=False

发布于 2024-10-13 04:15:14 字数 426 浏览 4 评论 0原文

如果超链接中没有任何文本值,我试图隐藏中继器中的超链接可见性。像这样的事情:

Protected Sub rptReferenca_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles rptReferenca.ItemDataBound
    Dim lnkThumb As HyperLink = CType(rptReferenca.FindControl("lnkThumb"), HyperLink)
    If lnkThumb.Text = 0 Then
        lnkThumb.Visible = False
    End If
End Sub

但这当然行不通。任何帮助表示赞赏。

I am trying to hide Hyperlink visibility in Repeater if there isn't any Text value in Hyperlink. Something like this:

Protected Sub rptReferenca_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles rptReferenca.ItemDataBound
    Dim lnkThumb As HyperLink = CType(rptReferenca.FindControl("lnkThumb"), HyperLink)
    If lnkThumb.Text = 0 Then
        lnkThumb.Visible = False
    End If
End Sub

But of course it doesn't work. Any help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无所谓啦 2024-10-20 04:15:14

尝试将其更改为:

If lnkThumb.Text = 0 Then

...至此:

If lnkThumb.Text.Length = 0 Then

Try changing this:

If lnkThumb.Text = 0 Then

...to this:

If lnkThumb.Text.Length = 0 Then
不离久伴 2024-10-20 04:15:14

您即将完成:

Dim lnkThumb As HyperLink = CType(e.Item.FindControl("lnkThumb"), HyperLink)
If lnkThumb.Text.Length = 0 Then
    lnkThumb.Visible = False
End If

需要从 RepeaterItemEventArgs 中提取控件并检查文本的长度

You're almost there:

Dim lnkThumb As HyperLink = CType(e.Item.FindControl("lnkThumb"), HyperLink)
If lnkThumb.Text.Length = 0 Then
    lnkThumb.Visible = False
End If

Need to extract the control from the RepeaterItemEventArgs and check the Length of the text.

你的心境我的脸 2024-10-20 04:15:14

不确定 VB 如何处理这个问题,但您正在根据 int 检查字符串。

或许

If lnkThumb.Text = "0" Then
    lnkThumb.Visible = False
End If

Not sure how VB handles this but you are checking a string against an int.

Maybe

If lnkThumb.Text = "0" Then
    lnkThumb.Visible = False
End If
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文