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

前端之家收集整理的这篇文章主要介绍了循环遍历VB.NET中的request.querystring前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图循环查询字符串并提取某些值,如下所示:
?ProductID=1234&ProductID=4321&Quantity=1

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

当您的查询字符串具有多个具有相同键的值时,您可以使用返回字符串数组的 NameValueCollection.GetValues方法
dim productID as string
for each productID  in Page.Request.QueryString.GetValues("ProductID")
  ' do something with productID
next productID
原文链接:https://www.f2er.com/vb/255821.html

猜你在找的VB相关文章