2

我正在使用 webclient 伪造一个表单帖子,如下所示:

public static string SendHttpRequest(string url, string method, List<WebParameter> paramaters)
    {
        using(WebClient client = new WebClient())
        {

            client.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
            System.Collections.Specialized.NameValueCollection reqparm = new System.Collections.Specialized.NameValueCollection();
              foreach (var param in paramaters)
              {
                  reqparm.Add(param.name, param.value);
                  //reqparm.Add("param2", "escaping is already handled");
              }
                byte[] responsebytes = client.UploadValues(url, method, reqparm);
              string responsebody = Encoding.UTF8.GetString(responsebytes);

              return responsebody;
       }
    }

到目前为止它运行良好,但响应是一个 html 页面。我想将此页面嵌入到我的视图中。

我的控制器动作看起来像这样

        string response = SendHttpRequest(purl,"POST",param);

        ViewBag.Response = response;
        return View();

在我看来,当我调用 ViewBag.Response 时,它​​会向我展示原始 html。这不是我想要的。我想显示页面。

我在想我可以用 iframe 做到这一点,但不知道怎么做。

编辑:

预期的响应如下所示:

  <!DOCTYPE html> <html> <head> <link rel='shortcut icon' type='image/x-icon' href='/test_paydirect/favicon.ico' /> <meta name="viewport" content="width=device-width, initial-scale = 1, maximum-scale=1, user-scalable=no" /> <title>WebPAY</title> <link href="/test_paydirect/Content/webpay?v=CSrAVoCR_RCkIRW_2W4qWDLY74gqncHw6gTHkYQDqPI1" rel="stylesheet"/> <script src="/test_paydirect/scripts/jquery?v=YDYC4uCmpbLIjqOyVNC_2sd9YbHnRonWjUni8iH6_Xo1"></script> </head> <body> <div id="outer-frame"> <div id="page-header"> <div id="account-header"> </div> </div> <!--page logo header starts--> <div id="page-logo-header" class=""> <div id="page
4

1 回答 1

3

你有没有在你的观点中尝试过这个?:

    @Html.Raw(ViewBag.Response)

默认情况下,字符串将被 HTML 编码以防止脚本注入。

于 2013-09-27T13:06:10.570 回答