gpt4 book ai didi

vb.net - 循环遍历 VB.NET 中的 request.querystring

转载 作者:行者123 更新时间:2023-12-01 07:16:54 24 4
gpt4 key购买 nike

我正在尝试遍历查询字符串并提取某些值,如下所示:

?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

关于vb.net - 循环遍历 VB.NET 中的 request.querystring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/562943/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com