本文介绍了如何在Web方法中重定向到另一个页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用Web方法重定向到另一个页面
我已经使用过,但页面无法重定向.
[WebMethod] 公共 静态 void Go_BDPolicy(字符串 pol) { 字符串 result = " 欢迎先生. + pol + " " ; HttpContext.Current.Response.Redirect(" 〜/DirectCSD/BusinessDeveloper.aspx" ,错误); }
解决方案
How to redirect to another page in web method
i have used but page not redirect.
[WebMethod] public static void Go_BDPolicy(string pol) { string result = "Welcome Mr. " + pol + ""; HttpContext.Current.Response.Redirect("~/DirectCSD/BusinessDeveloper.aspx",false); }
解决方案
这篇关于如何在Web方法中重定向到另一个页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!