我想在VB.NET中使用此代码我无法将其转换为...
代码1
Response.Redirect("user.aspx?val=" + txtBox.Text);
string strVal = Request.QueryString["val"];
代码2
Session["val"] = txtBox.Text;
Response.Redirect("user.aspx");
String strVal = (string) Session["val"];
答案 0 :(得分:1)
这是您的翻译:
Response.Redirect("user.aspx?val=" & txtBox.Text)
Dim strVal As String = Request.QueryString("val")
和
Session("val") = txtBox.Text
Response.Redirect("user.aspx")
Dim strVal As String = DirectCast(Session("val"), String)
答案 1 :(得分:1)
代码1:
Response.Redirect("user.aspx?val=" & txtBox.Text)
Dim strVal As String
strVal=Request.QueryString("val")
代码2:
Session("val)=txtBox.Text
Response.Redirect("user.aspx")
Dim strVal As String
strVal=Cstr(Session("val"))