if you want to store data in web forms, I suggest you use a session. If you use static, you will probably have big problems when your app going to be used, so use static only for global and constant information and not variable data. To use sessions in web forms you can do that like this example:
//textbox1 and textbox2 are controls of webform
Session["name"]=TextBox1.Text;
Session["email"]=TextBox2.Text;
Response.Redirect("form2.aspx");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…