public static string UrlParams()
        {
            string text = RequestHelper.RawUrl();

            return(text.Substring(text.IndexOf('?') + 1));
        }
 public static void Rediret301(string url)
 {
     RequestHelper.Rediret301(HttpContext.Current, url);
 }