public string RequestData(string name)
 {
     return(HttpMethod == "GET"
         ? QueryStrings.Data(name)
         : Forms.Data(name));
 }