我试图循环查询字符串并提取某些值,如下所示:
?ProductID=1234&ProductID=4321&Quantity=1
对于ProductID旁边的每个值,我想执行一些逻辑.但我不确定如何达到价值观.有任何想法吗?
当您的查询字符串具有多个具有相同键的值时,您可以使用返回字符串数组的
NameValueCollection.GetValues方法:
原文链接:https://www.f2er.com/vb/255821.htmldim productID as string for each productID in Page.Request.QueryString.GetValues("ProductID") ' do something with productID next productID