我正在寻找一个if else语句,如果它检测到一个查询字符串则执行一个操作,如果没有检测到一个则执行另一个操作。我的麻烦在于语法,我找不到一个好的例子。
我正在寻找以下内容:
if (requisition_id = null)
do this action
else
do this action
我基本上都在寻找识别查询字符串所需的语法,其余的代码我已经做好了准备。
任何帮助表示赞赏
由于
答案 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
}