private void GetUserTable()
 {
     HTMLParser parser = new HTMLParser();
     string content = parser.ParseUserTableHTML(Response.Path);
     if (content != null)
     {
         Response.Content = Encoding.UTF8.GetBytes(content);
         Response.AddHeader("Content-Length", Response.Content.Length.ToString());
     }
 }
 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());
 }