我在C#中有以下代码,用于将值发布到另一个站点中的表单
var webClient = new WebClient();
const string uri = "http://anothersite.com/index.php";
const string myParameters = "param1=value1¶m2=value2";
webClient.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
var htmlResult = webClient.UploadString(uri, myParameters);
webClient.Dispose();
您能否建议如何在浏览器中呈现响应页面? 我必须在浏览器中呈现整个响应页面,因为它将从该网站本身提交时显示