この例がある場合、ユーザー入力を表示するにはどうすればよいですか。(Default.aspx)
名: (テキスト
ボックス)
姓: (テキストボックス)
Response.Redirect を使用して、Default.aspx からのユーザー入力を別のページ (WebForm1.aspx) に表示したいと考えました。
これどうやってするの ?
は
Response.Redirect("WebForm1.aspx?VariableName" + TextBox1.Text)
and TextBox1.Text.Request.QueryString("VariableName")
働く ?