请问如何用HttpOpenRequest访问带参数页面
如题,我想在需要访问一个带参数页面比如 www.baidu.com\111.aspx?id=123请问id=123是通过HttpOpenRequest还是HttpSendRequest发送给服务器,用HttpSendRequest后服务器老是收不到参数
!
请大家给个正解,多谢! --------------------编程问答--------------------
string requestUrl = "http://localhost/getcontent.aspx?Url=" + pushMsg.Url + "&Msgid=" + sms.MsgID;
//string requestUrl = "http://localhost:2147/pushweb/getcontent.aspx?Url=" + pushMsg.Url + "&Msgid=" + sms.MsgID;
request = (HttpWebRequest)WebRequest.Create(requestUrl);
request.Method = "Get";
request.Accept = "text/*";
request.AddRange(0,pushMsg.Filesize);
request.UserAgent = "Aspire CPush Client";
response =(HttpWebResponse) request.GetResponse();
不知道是不是你想要的 --------------------编程问答-------------------- 我用c++写的win32程序! --------------------编程问答-------------------- InternetConnect参数需要www.baidu.com
HttpOpenRequest参数需要/111.aspx?id=123 --------------------编程问答-------------------- 哦,这个我知道,这个方法是可以的!我先就是用的这个办法
但是有个问题,比如我要连续的访问id=111,id=222,id=333,那么我就需要HttpOpenRequest和HttpSendRequest3次;
我就想知道只在HttpOpenRequest里面使用111.aspx,在HttpSendRequest使用id=123 行不行呢??如果行那我就只用HttpOpenRequest1次,HttpSendRequest3次就可以了,这样效率就提高了!!
不知道我这个想法是否可行! --------------------编程问答-------------------- 应该不行吧。 --------------------编程问答-------------------- 楼主 我是VC提交请求给ASP页面,但是我现在遇到的问题是参数里面是中文咋办 --------------------编程问答-------------------- 先对数据进行url编码!
补充:移动开发 , Windows Phone