예제 #1
0
 private void GetConfiguration()
 {
     HTMLParser parser = new HTMLParser();
     string content = parser.ParseHTMLConfig(Response.Path, isAdmin);
     Response.Content = Encoding.UTF8.GetBytes(content);
     Response.AddHeader("Content-Length", Response.Content.Length.ToString());
 }