我试图循环查询字符串并提取某些值,如:
?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