检查控件是否存在
我的密码字段位于某些页面上,而不位于某些页面上。这是遗留代码,它使用一个包含页面来实现两种类型页面上的逻辑。我需要检查该控件是否存在。我似乎找不到使用 vbscript 进行检查的方法。
有些页面有
<label>Enter Password:</label> <input type="password" name="pwd" id="pwd"/><br/>
一些不存在
使用 ASP 如何检查它是否存在?
if (?????) then
end if
I have a password field that is on some pages and not on some pages. This is legacy code and it uses one include page for logic on both types of pages. I need to check if that control exists. I can't seem to find a way to check using vbscript.
some pages have
<label>Enter Password:</label> <input type="password" name="pwd" id="pwd"/><br/>
some do not
Using ASP how do I check if it exists?
if (?????) then
end if
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
服务器端 ASP:
Server-side ASP:
不确定您是在服务器上运行还是在客户端上运行。所以我会在客户身上进行尝试。这可能对你有用。更新:
由于这是服务器端,并且 vbscript 已经很老了,我隐约记得这对我有用:
Not real sure if you are running on the server or on the client. So I'll take a stab its on the client. This might work for you.Update:
Since this is server side, and vbscript is pretty long in the tooth, I dimly remember this working for me: