Example #1
0
        public static void Redireccionar(Exception ex, string url)
        {
            UrlParameterPasser urlWrapper = new UrlParameterPasser(url);

            urlWrapper["ex"] = Detalle(ex);
            urlWrapper.PassParameters();
        }
Example #2
0
        public static void Redireccionar(string idParm, string valor, string url)
        {
            UrlParameterPasser urlWrapper = new UrlParameterPasser(url);

            urlWrapper[idParm] = valor.Replace("<b>", String.Empty).Replace("<b/>", String.Empty);
            urlWrapper.PassParameters();
        }
Example #3
0
 public static void Redireccionar(Exception ex, string url)
 {
     UrlParameterPasser urlWrapper = new UrlParameterPasser(url);
     urlWrapper["ex"] = Detalle(ex);
     urlWrapper.PassParameters();
 }
Example #4
0
 public static void Redireccionar(string idParm, string valor, string url)
 {
     UrlParameterPasser urlWrapper = new UrlParameterPasser(url);
     urlWrapper[idParm] = valor.Replace("<b>", String.Empty).Replace("<b/>", String.Empty);
     urlWrapper.PassParameters();
 }