如何从 Request.form.Allkeys 读取值
我现在在回发时使用 Literal 创建了复选框,我得到了在 Request.form.Allkeys
中选中的复选框。但是我不知道如何读取这些值,如何使用它们?我如何计算其中有多少个值以及如何在其中找到一些值示例我想查找 request.forum.allkey
是否包含 forumaName0
..
谢谢你
I have checkboxes that I have created using Literal now on postback I get the checkboxes which are checked in the Request.form.Allkeys
. However I don't know how to read those values how can I use them? how can I count how many values are in there and how can I find some values in there example I want to find if the request.forum.allkey
contain forumaName0
..
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您的 aspx 页面中有这些复选框:
您应该能够遍历所有键并检查是否选中了所需的复选框:
编辑 - 否决者的屏幕截图:
Assuming you have these checkboxes in your aspx page:
You should be able to iterate through all the keys and check if the desired checkbox is checked:
EDIT - Screenshot for downvoter:
关于 Lee Sy En 和 AsifQadri 提到的
Contains
方法,请快速仅供参考:如果您想使用它,请确保您的程序集引用中有System.Linq
(或上面屏幕截图中显示的任何其他IEnumerable
扩展方法)。A quick FYI, in regards to the
Contains
method mentioned by Lee Sy En and AsifQadri: make sure you haveSystem.Linq
in your assembly references if you want to use it (or any of the otherIEnumerable
extension methods shown in the screenshot above).