我使用 Asp.Net Mvc 4
www.hostname.com 从我的 report.hostname2.com 向我的站点
发送和接收数据,以通过字符串 bi 代码隐藏直接移动到该地址。
querysstring 不是,因为发送一个很长的字符串
我的意思是 rapor.coskunoglu.net/Pdf 地址发送字符串数据直接移动到
屏幕的那个地址 PDF 使它看起来如此。
我怎样才能做到这一点?谢谢你,放轻松。
对不起,我的英语不好。
EDIT0:
我想使用 POST。
某人-> 我的 StringBuilder。
byte[] bytt = Encoding.UTF8.GetBytes(sb.ToString());
WebRequest wr = WebRequest.Create("http://report.hostname2.com/Pdf");
wr.ContentType = "application/x-www-form-urlencoded";
wr.ContentLength = bytt.Length;
wr.Method = "POST";
Stream st = wr.GetRequestStream();
st.Write(bytt, 0, bytt.Length);
st.Close();
发送 POST 后,我想访问 report.hostname2.com。你看到我的工作了吗?