>>>asp.net 里面的 HttpRequest ,WebHttpRequest 之类的能实现这个功能么?yes, see
http://www.20cn.net/ns/wz/comp/data/20020812005500.htm

解决方案 »

  1.   

    我试过了,哪个是用C# 搞的,不成功?
    string strLogin = Login("http://www.thesiteyouwanttovisit/theloginpage.asp", "Action=&USERID=&Password=") 
    acation 后面要填什么?  userid=用户名, password=密码,请指教?
      

  2.   

    gethttpinfo.aspx
    gethttpinfo.cs 编译成 dll ,可以运行?
    但取页面不成功, 不知道
    ("http://www.thesiteyouwanttovisit/theloginpage.asp", "Action=&USERID=&Password=") strResult = getPage("http://www.thesiteyouwanttovisit/theloginpage.asp", "Action=&data=") ;
    这上面的两句话里面的参数怎么设置?
      

  3.   

    一般需要Post方式,参考
    http://xml.sz.luohuedu.net/xml/ShowDetail.asp?id=ATV1GLXT-65FF-4M82-CT5U-B1J65D3ZN2OK
      

  4.   

    比如,一个login页面里面有输入用户名,密码,登进去后有一个 main页面(有session),我现在就是要通过:
    Login("http://www.thesiteyouwanttovisit/theloginpage.asp", "Action=&USERID=&Password=") 
    strResult = getPage("http://www.thesiteyouwanttovisit/theloginpage.asp", "Action=&data=") ;
    来实现1.登录,2.取数据, 怎么设置