如何使用 C# 读取从 asp.net 页面传递的参数?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1078171/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to read parameter passed from asp.net page, using C#?
提问by
I'm new to ASP.net, how can I read parameters passed from ASP.net page (http://website.com/index.aspx?id=12&nam=eee).
我是 ASP.net 的新手,如何读取从 ASP.net 页面(http://website.com/index.aspx?id=12&nam=eee)传递的参数。
Any small example will be appreciated, just something for me to start from.
任何小例子都会受到赞赏,这只是我的起点。
采纳答案by RichardOD
Using your sample URL:
使用您的示例网址:
string id = Request.QueryString["id"];
string nam = Request.QueryString["nam"];
Read about Request.QueryString on MSDN. You probably want to convert the id
value to an int.
在 MSDN 上阅读Request.QueryString。您可能希望将该id
值转换为int。
回答by cjk
They are available in Request.QueryString
. This is a collection of string key/value pairs, that can also be accessed by ordinal index.
它们在Request.QueryString
. 这是字符串键/值对的集合,也可以通过序数索引访问。
回答by Efe Kaptan
For security reasons, be careful with XSS attacks. Please use this library:
出于安全原因,请小心 XSS 攻击。请使用这个库:
http://msdn.microsoft.com/en-us/library/aa973813.aspx
http://msdn.microsoft.com/en-us/library/aa973813.aspx
Example:
例子:
String Name = AntiXss.HtmlEncode(Request.QueryString["Name"]);
回答by Bindesh chourasiya
string st1=Request.QueryString["t1"].ToString();
string st1=Request.QueryString["t1"].ToString();
int a=Convert.ToInt32(st1)+Convert.ToInt32(st2);
Response.Write(a);