我想从表单(asp(C#))接收输入,并在另一页中使用此信息。表单的动作是去另一个地方。
我尝试使用:
Session["UserNameLog"] = Request.Form["user"];
但是在移至另一页之前无法成功获取信息...
<form action="index.aspx" class="formcontainer" id="formcontainer" method="post" runat="server">
Session["UserNameLog"] = Request.Form["user"];
我也尝试使用:
if(Page.isPostBack)
但该页面没有返回,因为我要移至另一页面...
请帮助... 谢谢!