如果我有这个例子,我如何显示用户输入。(默认.aspx)
名字:(文本框)
姓氏:(文本框)
我想使用 Response.Redirect 将来自 Default.aspx 的用户输入显示到另一个页面 (WebForm1.aspx)。
我怎样才能做到这一点 ?
是
Response.Redirect("WebForm1.aspx?VariableName" + TextBox1.Text)
and TextBox1.Text.Request.QueryString("VariableName")
在职的 ?