Esempio n. 1
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();
 }
Esempio n. 2
0
 public static void Redireccionar(Exception ex, string url)
 {
     UrlParameterPasser urlWrapper = new UrlParameterPasser(url);
     urlWrapper["ex"] = Detalle(ex);
     urlWrapper.PassParameters();
 }