WinCE ASP 服务器中缺少功能
我正在尝试通过 Html 表单来创建 XML 文件。我正在尝试使用此指令来浏览 HTML 表单,直到找到按钮。
If instr(1,Request.Form.Key(x),"button") = 0 Then
但 WindowsCE ASP 不支持 Request.Form.Key(x)。有谁知道这个功能有什么合适的替代品吗?
I'm trying to go through an Html form to create a XML file. I'm trying to use this instruction to go through a HTML form until it finds a Button.
If instr(1,Request.Form.Key(x),"button") = 0 Then
But Request.Form.Key(x) isn't supported in WindowsCE ASP. Does anyone knows of any suitable replacement for this function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 WinCE 中,无法访问集合中的可用键集。您能做的最好的事情就是预先了解可能的键名并依次尝试每个键名。哎呀!
如果您完全不需要这种方法,那就更好了。
In WinCE there is no way to access the set of available keys in the collection. The best you can do is have fore-knowledge of the likely and possible key names and try each in turn. Yuck!
It would better if you removed the need for this approach altogether.