gpt4 book ai didi

c# - 如何访问来自 ASP.net 中 GET 方法的 url 中的变量?

转载 作者:太空宇宙 更新时间:2023-11-03 20:46:35 25 4
gpt4 key购买 nike

事实证明,Asp.net 比 PHP 更易于使用(到目前为止)。但是,我已经搜索了一段时间,根本无法弄清楚。如何获取页面 url 中包含的变量(源自具有“GET”方法的表单)并使用它们?

例如,我的页面是 www.example.com/index.asp?somevariable=something

我怎样才能得到 somevariable 的值?

最佳答案

您可以使用 ybo 所说的内容,但它并不完整(至少对于 VB)。仅此一项就可能导致抛出空引用异常。您想要转换(即 TryParse)值,并处理您期望包含值的任何空参数:

Dim itemId As Integer
Dim itemType as String

If Not Integer.TryParse(Request.QueryString("i").ToString, itemId) Then
itemId = -1 ' Or whatever your default value is
Else
' Else not required. Variable itemId contains the value when Integer.TryParse returns True.
End If

itemType = Request.QueryString("t").ToString ' <-- ToString important here!

关于c# - 如何访问来自 ASP.net 中 GET 方法的 url 中的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/646047/

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