DataListItem 到 DropDownList 或 TextBox VB.Net

发布于 2024-07-13 04:11:15 字数 461 浏览 17 评论 0原文

我有一个 DataListItem,它可能是一个下拉列表或文本框。 为了获得我需要做的值:

 CType(item.FindControl("myControl"), TextBox).Text

或者

CType(item.FindControl("myControl"), DropDownList).SelectedValue.ToString()

问题是,如果它是一个下拉列表,我得到..

无法转换类型的对象 'System.Web.UI.WebControls.DropDownList' 输入 'System.Web.UI.WebControls.TextBox'。

有没有办法在 Ctype 之前检查 CType 是否会采用?

I have a DataListItem which can potentially be a dropdownlist or a textbox. To get the value I would need to do:

 CType(item.FindControl("myControl"), TextBox).Text

Or

CType(item.FindControl("myControl"), DropDownList).SelectedValue.ToString()

The problem is, if it's a dropdownlist I get..

Unable to cast object of type
'System.Web.UI.WebControls.DropDownList'
to type
'System.Web.UI.WebControls.TextBox'.

Is there a way to check if the CType will take before Ctyping it?

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

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

发布评论

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

评论(1

伏妖词 2024-07-20 04:11:15

使用 TryCast:

Dim txt as TextBox = TryCast(item.FindControl("myControl"), TextBox)
If txt Is Nothing Then
    TryCast(item.FindControl("myControl"), DropDownList)
End If

Use TryCast:

Dim txt as TextBox = TryCast(item.FindControl("myControl"), TextBox)
If txt Is Nothing Then
    TryCast(item.FindControl("myControl"), DropDownList)
End If
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文