0
私はそれを変換することはできませんVB.NETでこのコードを希望するC#で... VB.Net
CODE1
Response.Redirect("user.aspx?val=" + txtBox.Text);
string strVal = Request.QueryString["val"];
CODE2をコードスニペットを変換する
Session["val"] = txtBox.Text;
Response.Redirect("user.aspx");
String strVal = (string) Session["val"];
なぜいけないのでしょうか?何を試しましたか? – SLaks
このリンクを確認してください。
[http://www.developerfusion.com/tools/convert/csharp-to-vb/](http://www.developerfusion.com/tools/convert/csharp-to-vb/) –