使用HttpWebRequest c#重定向到Post数据后的Url

本文关键字:数据 Url Post HttpWebRequest 重定向 使用 | 更新日期: 2023-09-27 18:02:10

我正在整合现金支付网关

我需要使用 Post 方法发布一些数据。那么我想重定向到支付网关网站。

我已经做过了

 [HttpPost]
public ActionResult Index(string getAmount)
{
// some more process
 var getResponce = ExecutePost(getTokenCode);
}

 private string ExecutePost(string tokenCode)
        {
            var cashuLink = ConfigurationManager.AppSettings["CashULink"].ToString();
            HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(cashuLink);

            var postData = "Transaction_Code="+tokenCode;
            postData += "&test_mode=1";
            var data = Encoding.ASCII.GetBytes(postData);
            webReq.Method = "POST";
            webReq.ContentType = "application/x-www-form-urlencoded";
            webReq.ContentLength = data.Length;
            using (var stream = webReq.GetRequestStream())
            {
                stream.Write(data, 0, data.Length);
            }
            var response = (HttpWebResponse)webReq.GetResponse();
            var responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
            return responseString;
        }

我的ExecutePost方法返回字符串格式的Html页面字符串。但是我想在支付网关网站上重定向。

使用HttpWebRequest c#重定向到Post数据后的Url

可以使用

返回重定向(URl),

重定向到另一个url