怎样在winform中使用Process.Start的重载方法跳转页面并且给页面传值,在页面的一端也能接收验证该值 
如下:
System.Diagnostics.Process.Start("http://www.baidu.com","zhangsan",new System.Security.SecureString(),"yueming" ); 具体的不会用。
我是想做一个在c/s端点击按钮后,自动通过验证并且进入网页。如果直接打开网页则失败(或者需要在网页是登陆都可以)。就是不知道哪一个安全?希望大家能给我推荐一个好的方案。谢谢!

解决方案 »

  1.   

    string url = "http://" + IP + ":" + locationPort + "/";
                Process.Start("IExplore.exe", url);
    url自己定义就行了。。
      

  2.   

    System.Diagnostics.Process.Start("http://www.test.com/index.aspx?id=test");界面接收:
    Request.QueryString("id");
      

  3.   

    Process.Start("http://www.baidu.com/s?wd=sdf&rsv_bp=0&rsv_spt=3&inputT=561");
      

  4.   

    我是想用post方式接收 get方式不安全 毕竟是用户名和密码
      

  5.   

    那就不能用 Processhttp://www.tzwhx.com/newOperate/Html/1/12/121/8043.html