ASP.NET Request QueryString encoding
C#, ASP.NET
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
private System.Collections.Generic.Dictionary<string, string> requestDic;
protected void Page_Load(object sender, EventArgs e)
{
ParseRequestQueryStringData(System.Text.Encoding.GetEncoding(949));
string t = GetRequestQueryString("strErrMsg");
lbMessage.Text = t;
}
private void ParseRequestQueryStringData(System.Text.Encoding encoding)
{
string url = HttpUtility.UrlDecode(Request.RawUrl, encoding);
int s = url.IndexOf('?', 0);
if (s < 0)
{
return;
}
requestDic = new System.Collections.Generic.Dictionary<string, string>();
string requestData = "&" + url.Substring(s + 1) + "&";
int pos = requestData.IndexOf('&', 0);
int pos2 = 0;
string paramName;
string paramValue;
while (pos >= 0 && pos2 >= 0)
{
pos2 = requestData.IndexOf('=', pos);
if (pos2 > 0)
{
paramName = requestData.Substring(pos + 1, pos2 - pos - 1);
pos = requestData.IndexOf('&', pos2);
if (pos > 0)
{
paramValue = requestData.Substring(pos2 + 1, pos - pos2 - 1);
requestDic.Add(paramName, paramValue);
}
}
}
}
private string GetRequestQueryString(string paramName)
{
try
{
return requestDic[paramName];
}
catch (System.Collections.Generic.KeyNotFoundException keyEx)
{
return null;
}
}
|
cs |
'C#, ASP.NET' 카테고리의 다른 글
ASP.NET Request Form encoding (0) | 2019.07.13 |
---|---|
[C#] EPPlus로 엑셀 생성 시 필요없는 property 제거하기 (0) | 2019.02.02 |
PushSharp로 APNs 이용중 오류 해결 - 패키지에 제공된 자격 증명을 인식할 수 없습니다 (0) | 2017.11.08 |
[크롬북으로 개발하기] 원격접속시 텔레그램 메시지 받기 : 5. 전송 프로그램 만들기 (C#) (0) | 2016.08.20 |
[크롬북으로 개발하기] 원격접속시 텔레그램 메시지 받기 : 4. Cloud IDE로 개발하기 (goorm.io) (0) | 2016.08.20 |