设置if else语句以检查查询字符串

时间:2012-12-20 16:25:37

标签: c# asp.net

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

我正在寻找以下内容:

if (requisition_id = null)

    do this action

else

    do this action

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

任何帮助表示赞赏

由于

1 个答案:

答案 0 :(得分:3)

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

string argname = Request.QueryString["argname"];
if (argname != null)
{
    // argname contains the argument value
}
else
{
    // No argument value was supplied
}