해결해야 할 문제:
다음 URL을 다른 페이지에 매개변수로 전달합니다.
1 http://domain/de.apx?uid=12&page=15
2개의 한자가 URL 뒤의 매개변수에 나타납니다. ....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 }