프런트 데스크
제목 없는 페이지
클릭
배경 데이터 수신
안녕하세요
백스테이지
복사 code
string name = Request.Params["name"].ToString();
stringbirth = Request.Params["birthday"].ToString()
if (!string.IsNullOrEmpty(name) && !string.IsNullOrEmpty(birth))
{
//Response.ContentType = "Application/json";
//Response.Write(CreareJson("괜찮습니다!", 1, 이름, 출생)));
ht.Add("info", "성공");
ht.Add("sta", "status")
ht.Add("name", name);
ht.Add("birth",birth);
Response.Write(CreateJsonParams(ht));
}
Response.End()
}
비공개 문자열 CreateJsonParams (해시테이블 항목)
{
string returnStr = "";
foreach(항목의 DictionaryEntry 항목)
{
returnStr = """ item.Key.ToString() "": " " item.Value.ToString() "",";
}
return "{" returnStr.Substring(0,returnStr.Length-1) "}"
}