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