ASP.NET(C#)如何使用期Request获取通过网址传递的参数?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET(C#)如何使用期Request获取通过网址传递的参数?相关的知识,希望对你有一定的参考价值。
比如网址是 http://aaa.com/search.aspx?key=123 那么可以使用request来获取网址中的参数:string id = Request["key"]; 但如果有两个参数,比如是 key和type呢?网址形式是不是这样: http://aaa.com/search.aspx?key=123&type=456 如果不正确,麻烦帮我改正过来。 两个参数,又如何获取?
参考技术A string sid = Request.QueryString["key"]; string stype = Request.QueryString["type"]; 接收的都是字符串类型 如果要数字 需要用 Convert.ToInt32(sid); 转换下本回答被提问者采纳 参考技术B get方式提交参数在url最后拼接 {?参数名=值 } 的格式,多个参数用&符号连接,你写的是对的一个参数你知道取 string id = Request["key"];
中括号内就是你的参数名嘛
string key = Request["key"];
string type = Request["type"];
注意你的参数类型以及接受参数的数据类型是否一致。
用asp.net c# HttpWebRequest获取网页源代码
public string GetPage(string url)
{
HttpWebRequest request = null;
HttpWebResponse response = null;
StreamReader reader = null;
try
{
request = (HttpWebRequest)WebRequest.Create(url);
request.Timeout = 20000;
request.AllowAutoRedirect = false;
response = (HttpWebResponse)request.GetResponse();
if (response.StatusCode == HttpStatusCode.OK && response.ContentLength < 1024 * 1024)
{
reader = new StreamReader(response.GetResponseStream(), System.Text.Encoding.Default);
string html = reader.ReadToEnd();
return html;
}
}
catch
{
}
finally
{
if (response != null)
{
response.Close();
response = null;
}
if (reader != null)
reader.Close();
if (request != null)
request = null;
}
return string.Empty;
}
以上是关于ASP.NET(C#)如何使用期Request获取通过网址传递的参数?的主要内容,如果未能解决你的问题,请参考以下文章