网页下实现自动登录网页后,再打开其他网页的页面
  例如:
 private static CookieContainer cc = new CookieContainer();
string strHtml = GetLogin("http://www.xxx.com/Login.aspx", "yhdh=admin&mm=000000", true, cc);GetLogin方法就是通过HttpWebRequest和HttpWebResponse方法实现验证//strHtml 实现登录后,返回的HTML信息,
  if (strHtml.IndexOf("***网页系统") == -1)// 如果存在"***网页系统"表示登录成功
  {
    
  //打开"***网页系统下的aaa.aspx页面", aa.aspx是http://www.xxx.com站点下的页面
这样做不行 要怎样才可实现????求高手回答   
  Response.Redirect("aaa.aspx",false);
  }