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