string name=context.Request.QueryString["Name"];//get请求
string name=context.Request.QueryString.Form["Name"];//post请求
string name=context.Request["Name"];//get和post
Reponse对象:输出数据对象,用于服务器响应的数据发送到客服端
string name=context.Request.QueryString["Name"];//get请求
string name=context.Request.QueryString.Form["Name"];//post请求
string name=context.Request["Name"];//get和post
Reponse对象:输出数据对象,用于服务器响应的数据发送到客服端