例如我的网址是
1- newz4online.com/News_details?News=asdfffffff
2- newz4online.com/News_details?BNews=asssss
现在 News_details 是一个单页,但是使用这两个不同的查询字符串变量,我使用一些 if else 条件得到不同的值。因此,为此我需要检查天气,哪个变量存在,哪个不存在。
string newz = Request.QueryString["News"];
string BNews = Request.QueryString["BNews"];
如果 url 愿意,这些是从查询字符串中获取值的方法
newz4online.com/News_details?News=asdfffff&BNews=
and newz4online.com/News_details?News=&BNews=asssss
但它在变量存在时使用,
如果没有变量,那么它不会给出任何值,
newz4online.com/News_details?News=asdfffffff
2-newz4online.com/News_details?BNews=asssss
它只会给出使用的单个变量值。
我要问的是,如果 url 有一个查询字符串变量并且没有其他变量,我该怎么做才能将其他变量分配给 null..?
请帮助我