        //HttpRequest req = new HttpRequest();
        //HttpServerletRequest response = new HttpServerletRequest();
        Response.Cookies.Clear();
        ////cook.HttpOnly = true;
        ////cook.Path = "/";
        //cook.Values.Add("obpmDomainName", "HouseFundOA");
        //cook.Values.Add("obpmLoginUserName", "user1");
        //cook.Values.Add("obpmLoginPassword", "123456");
        //Response.AppendCookie(cook);
      
        //Session["uname"] = "HouseFundOA";
        String s = "";
        // Encoding.GetEncoding("UTF-8").
        System.Text.ASCIIEncoding ecoding = new System.Text.ASCIIEncoding();
        //HttpCookie["uname"] = "HouseFundOA";
        byte[] domainname = ecoding.GetBytes("HouseFundOA");
        byte[] username = ecoding.GetBytes("user1");
        byte[] password = ecoding.GetBytes("123456");
        Response.Cookies.Add(new HttpCookie("obpmDomainName", Convert.ToBase64String(domainname)));
        Response.Cookies.Add(new HttpCookie("obpmLoginUserName", Convert.ToBase64String(username)));
        Response.Cookies.Add(new HttpCookie("obpmLoginPassword", Convert.ToBase64String(password)));
       // Response.Redirect("http://localhost:8080/obpm/portal/dispatch/main.jsp");
       ;