当前位置:  开发笔记 > 编程语言 > 正文

循环遍历VB.NET中的request.querystring

如何解决《循环遍历VB.NET中的request.querystring》经验,为你挑选了1个好方法。

我试图循环查询字符串并提取某些值,如:

?ProductID=1234&ProductID=4321&Quantity=1

对于ProductID旁边的每个值,我想执行一些逻辑.但我不确定如何达到价值观.有任何想法吗?



1> Jason DeFont..:

当您的查询字符串具有多个具有相同键的值时,您可以使用返回字符串数组的NameValueCollection.GetValues方法:

dim productID as string
for each productID  in Page.Request.QueryString.GetValues("ProductID")
  ' do something with productID
next productID  

推荐阅读
小白也坚强_177
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有