在不同页面操作时,使用Ajaxpro框架,通过session保存值来使父页面不刷新。没有数据库,下载后即可看到效果。
片段:
Code
public partial class Ajaxpro : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
AjaxPro.Utility.RegisterTypeForAjax(typeof(Ajaxpro)); //注册当前页面类,注意web.config里面的配置
if (!IsPostBack)
{
string str = JSOpen.Open("LinkSelectOperator.htm?id=jingshouren", "windowname"); //html页面只是一个中介的作用,如果SelectOperator.aspx页面的数据量很大的话,这时就会看到它的好处
this.selectOperator.Attributes.Add("onclick", str);
this.selectOperator.Attributes["style"] = "Cursor:hand";
string str1 = JSOpen.Open("LinkSelectOperator.htm?id=zhidanren", "windowname1");
this.selectOperator1.Attributes.Add("onclick", str1);
this.selectOperator1.Attributes["style"] = "Cursor:hand";
}
}
[AjaxPro.AjaxMethod(AjaxPro.HttpSessionStateRequirement.ReadWrite)]
public string GetOperator() //供js来调用的
{
string op = HttpContext.Current.Session["Operator"].ToString();
Session["Operator"] = null;
return op;
}
protected void Button1_Click(object sender, EventArgs e)
{
Response.Write("用户1:" + this.f_HandleUser.Value + "<br />" +
"用户2:" + this.f_FormUser.Value+"<br />");
}
}
代码下载