0
我已經調用了一個重定向到另一個頁面的方法。完成另一頁後,我想從上一頁返回。這是我的代碼:如何從其他頁面返回頁面?
private string RedirectToPaymentGateway_v3(string MTrackid, string MAmount,string MSType)
{
HttpContext.Current.Session["pgMTrackid"] = MTrackid;
HttpContext.Current.Session["pgMAmount"] = MAmount;
HttpContext.Current.Session["pgMStype"] = MSType;
HttpContext.Current.Response.Redirect("DoPost.asp", true);
return "";
}
完成dopost.asp
我想要在我打電話DoPost.asp
頁面後返回。
試試這個'HttpContext.Current.Response.Redirect( 「DoPost.asp」,false);' –