gpt4 book ai didi

asp.net - 使用后面的代码中的 Post 方法重定向到另一个页面

转载 作者:行者123 更新时间:2023-12-03 11:01:41 25 4
gpt4 key购买 nike

我想实现一个支付服务。我将在后面的代码中创建一些值,然后通过使用 post 方法将这些值发布到支付网关,用户必须重定向到该页面。

我不能使用表单操作,因为我必须创建一些值并在后面的代码中将一些东西保存在 db 中。

我该如何实现?
如果我可以将数据发布到我的应用程序上的另一个页面,并且可以以编程方式提交该页面,那么它可能对我有帮助。

谢谢

最佳答案

string url = "3rd Party Url";

StringBuilder postData = new StringBuilder();

postData.Append("first_name=" + HttpUtility.UrlEncode(txtFirstName.Text) + "&");
postData.Append("last_name=" + HttpUtility.UrlEncode(txtLastName.Text));

//ETC for all Form Elements

// Now to Send Data.
StreamWriter writer = null;

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = postData.ToString().Length;
try
{
writer = new StreamWriter(request.GetRequestStream());
writer.Write(postData.ToString());
}
finally
{
if (writer != null)
writer.Close();
}

Response.Redirect("NewPage");

看看这张海报
  • https://stackoverflow.com/questions/46582/response-redirect-with-post-instead-of-get
  • 关于asp.net - 使用后面的代码中的 Post 方法重定向到另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2258864/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com