-3

我正在寻找一个 if else 语句,如果它检测到一个查询字符串,则执行一个操作,如果没有检测到一个,则执行另一个操作。我的麻烦在于语法,我找不到一个好的例子。

我正在寻找类似的东西:

if (requisition_id = null)

    do this action

else

    do this action

我基本上是在寻找识别查询字符串所需的语法,剩下的代码我已经准备好了。

任何帮助表示赞赏

谢谢

4

1 回答 1

3

要读取查询参数的值,请使用对象的QueryString集合Request。如果它返回null查询参数名称,那么它没有在 URL 中提供。

string argname = Request.QueryString["argname"];
if (argname != null)
{
    // argname contains the argument value
}
else
{
    // No argument value was supplied
}
于 2012-12-20T16:30:28.423 回答