如何从webAPI返回,它将重定向到其他页面

时间:2016-07-01 02:15:28

标签: asp.net asp.net-mvc asp.net-web-api

以下是我的帖子信息

 content = new FormUrlEncodedContent(
                    new List<KeyValuePair<string, string>>
                    {
                        new KeyValuePair<string, string>("PlatFormId", m.MERCHANTID),
                        new KeyValuePair<string, string>("HashKey", "xxxxxx"),
                        new KeyValuePair<string, string>("ReCheckId", m.ORDERID),
                        new KeyValuePair<string, string>("Amount", Amount),
                        new KeyValuePair<string, string>("PayType", m.PAYTYPE),
                        new KeyValuePair<string, string>("RefundDesc", "xxxx"),
                        new KeyValuePair<string, string>("CancelFrom", "1")

                    }
                );

var httpClient = new HttpClient();
            var responseJson = httpClient.PostAsync(Url, content)
                .Result.Content.ReadAsStringAsync().Result;

当我发布到webAPI时。结果就像这张照片。 This is API's result

此API接收帖子将重定向另一个页面。 并做一些计算然后重定向最后一页。 我使用的是ASP.NET MVC。 如何发布这些消息并获得最终页面的结果。

0 个答案:

没有答案