解決すべき問題:
次の URL をパラメータとして他のページに渡します
1 http://domain/de.apx?uid=12&page=15
URL の後のパラメータに 2 つの漢字が表示されます。例: ....aspx?title=上記の状況が発生した場合、クレーンは RUL エンコードおよびデコード プロセスを実行する必要があり、そうでない場合はエラーが発生します。
コードは次のとおりです:
1//値を渡します。
2string temp = " お気に入りに追加");
3
4//上で渡された値を別のファイルで取得します
5if (Request.QueryString["url"] != null)
6 {
7 文字列 URL = Server.UrlDecode(Request.QueryString["url"].ToString());
8 this.txtAddress.Text = URL;
9}
10 if (Request.QueryString["title"] != null)
11 {
12 文字列タイトル = Server.UrlDecode(Request.QueryString["title"].ToString());
13 this.txtTitle.Text = タイトル;
14 }