Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个 if else 语句,如果它检测到一个查询字符串,则执行一个操作,如果没有检测到一个,则执行另一个操作。我的麻烦在于语法,我找不到一个好的例子。
我正在寻找类似的东西:
if (requisition_id = null) do this action else do this action
我基本上是在寻找识别查询字符串所需的语法,剩下的代码我已经准备好了。
任何帮助表示赞赏
谢谢
要读取查询参数的值,请使用对象的QueryString集合Request。如果它返回null查询参数名称,那么它没有在 URL 中提供。
QueryString
Request
null
string argname = Request.QueryString["argname"]; if (argname != null) { // argname contains the argument value } else { // No argument value was supplied }