首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

怎么判断文本框控件是否存在

2012-06-13 
如何判断文本框控件是否存在前端代码如下:input idb1 ReadOnlytrue value0 stylewidth:80px

如何判断文本框控件是否存在
前端代码如下:<input id='b1' ReadOnly='true' value='0' style='width:80px;' runat="server" />

我在后台如何判断是否存在 id='b1' 的input?

[解决办法]
遍历页面,标签是input的。。。
[解决办法]
或者form1.FindControl(“id”)看看是不是空
[解决办法]

VB.NET code
        Dim bool As Boolean = False        For Each item In Me.Controls            If item.GetType.ToString = "System.Web.UI.HtmlControls.HtmlInputText" Then                Dim control = TryCast(item, System.Web.UI.HtmlControls.HtmlInputText)                If control.ID = "b1" Then                    bool = True                    Exit For                End If            End If         Next 

热点排行