asp.net 中的问题。aspx和ashx的传值问题
初学ajax。在aspx页面中写了以下语句:protectedvoidbtnSearch_Click(objectsender,EventArgse){Session["...
初学ajax。
在aspx页面中 写了以下语句:
protected void btnSearch_Click(object sender, EventArgs e)
{
Session["ip"] = txtIpAddress.Text; //把输入的IP值存入
var strText = Request["strText"]; //接受strText值
lblResult.Text = "查询结果: " + strText;
}
在ashx页面中写了
public void ProcessRequest (HttpContext context) {
string address = context.Session["ip"] as string;
var strText = op.GetAddress(address); //这里我写了一个op类 就是取IP地址
context.Response.Write("strText"); //这里传strText值
}
但是最后没有结果。我想知道怎么才能正确的传值。 展开
在aspx页面中 写了以下语句:
protected void btnSearch_Click(object sender, EventArgs e)
{
Session["ip"] = txtIpAddress.Text; //把输入的IP值存入
var strText = Request["strText"]; //接受strText值
lblResult.Text = "查询结果: " + strText;
}
在ashx页面中写了
public void ProcessRequest (HttpContext context) {
string address = context.Session["ip"] as string;
var strText = op.GetAddress(address); //这里我写了一个op类 就是取IP地址
context.Response.Write("strText"); //这里传strText值
}
但是最后没有结果。我想知道怎么才能正确的传值。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询