gpt4 book ai didi

asp.net - VB.NET 查询字符串有参数

转载 作者:行者123 更新时间:2023-12-02 16:37:05 25 4
gpt4 key购买 nike

如何在 VB.NET 中检查查询字符串是否具有参数?我很难将 C# 代码改编为 VB。

我对确定是否存在无值/无键参数特别感兴趣。

伪代码:

If Request.QueryString.Contains("test") Then
' ...
End If

示例:

http://example.com/mypage.aspx?test
http://example.com/mypage.aspx?test=1
http://example.com/mypage.aspx?someparam=1&test&anotherparam=2

澄清一下,我不关心 test 是否有值。我只是想知道它是否在查询字符串中。

最佳答案

if Request.QueryString("test").Count > 0  then
...
end if

来源:https://www.w3schools.com/asp/coll_querystring.asp

关于asp.net - VB.NET 查询字符串有参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33834411/

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