Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
this.Form.Action = "https://www.ccavenue.com/shopzone/cc_details.jsp";
这不是直接重定向到支付网关。如果我在按钮单击事件中添加此代码,它工作正常。我想要自动重定向。你能建议吗?
在您的按钮处理程序代码中,您应该编写 Response.Redirect ("http://...");
Response.Redirect ("http://...");
您现在正在做的是设置一个 URL,当用户下次单击该按钮时,该 URL 将被击中。