when you do System.Web.HttpCookie Cookie=new System.Web.HttpCookie("MyCookies");
Cookie.Values["UserName"]="abc";
Cookie.Values["Password"]="123";
Response.Cookies.Add(Cookie);the cookie will be likeMyCookies=UserName=abc&Password=123so unless you want to deal with the cookie headers through Request.Headers["Cookie"] directly, you have to use those methods, of course, you can always doResponse.AppendHeader("Set-Cookie","abc=123");try the following to see how the cookies look like<script language=javascript>
alert(document.cookie);
</script>