7

我编写了以下函数,大约 95% 的时间都可以工作,但我需要它 100%(显然)工作:

Public Shared Function getPassedVars() As String   
    Const keyCount As Integer = 54 ' 54 seems to be the number of parameter keys passed by default (for this web_app).
    '                                there are more if there is a form involved (ie. from search page)

    Dim oParams As String = ""
    Try
        With HttpContext.Current
            If .Request.Params.AllKeys.Count > keyCount Then
                For i As Integer = 0 To (.Request.Params.AllKeys.Count - (keyCount + 1))
                    oParams &= String.Format("{0}={1}{2}", .Request.Params.Keys.Item(i), .Request.Params(i), IIf(i < .Request.Params.AllKeys.Count - (keyCount + 1), ";", ""))
                Next
            End If
        End With
        Return oParams
    Catch ex As Exception
        Return Nothing
    End Try
End Function

它清除Request.Params对象中传递的变量,这些变量位于数组的开头(其余的是 ASP 参数)。我很确定我已经看到了一种不同的方法来获取这些参数,但我无法弄清楚。有什么建议么?

编辑

所以看起来我可以使用Request.URL.Query来实现这一点,我将对此进行调查并回复。

这是我想出的:

Public Shared Function getPassedVars() As String
    Dim oParams As String = ""
    Dim qString As String = ""
    Dim oSplit As New List(Of String)
    Try
        With HttpContext.Current
            qString = .Request.Url.Query
            If qString.Length > 0 Then 'do we have any passed variables?
                If qString.StartsWith("?") Then qString = qString.Remove(0, 1) 'remove leading ? from querystring if it is there
                oSplit.AddRange(qString.Split("&"))
                For i As Integer = 0 To oSplit.Count - 1
                    oParams &= String.Format("{0}{1}", oSplit.Item(i), IIf(i < oSplit.Count - 1, ";", ""))
                Next
                Return oParams
            Else
                 Return Nothing
            End If
        End With
    Catch ex As Exception
        Return Nothing
    End Try
End Function

到目前为止,一切都很好。

4

5 回答 5

9

Request.QueryString 是一个 NameValueCollection,因此获取“参数”的最简单方法是执行以下操作:

    foreach (String s in Request.QueryString) {
        Response.Write(s + " = " + Request.QueryString[s]);
    }

你的函数在哪里?如果它在后面的页面代码中执行,那么您绝对不需要使用 HttpContext 变量。

于 2008-12-26T20:21:30.133 回答
8

看起来您正在尝试从查询字符串中获取值。

例如,对于这个 URL:-

http://www.tempuri.org/mypage.aspx?param1=x&param2=y

我假设您想要检索查询字符串参数 param1 和 param2 的值?

如果是这样,只需使用: -

Dim param1 as String = Request.QueryString("param1")

否则,如果这些参数包含在表单(HTTP POST 请求)中,则使用 Mitchel Sellers 建议的方法。

于 2008-12-26T20:02:45.223 回答
1
httpcontext.Current.Request.QueryString("KeyName")
于 2014-06-16T09:36:06.263 回答
1

如果您知道名称,则可以使用以下方法通过键值获取它

Dim myParamValue as String = Request.Form("MyKeyName")

否则,您可以通过按键等方式遍历表单集合以获取值。关键是,你真的需要解析所有 54 个项目吗?或者您只是在寻找一些特定的值?

于 2008-12-26T19:28:42.780 回答
0

Request.Params 将包含您所追求的查询参数。

无需解析 Request.URL 中的信息,因为它已经为您完成了。

于 2008-12-26T20:11:46.890 回答