The user name and the password are stored in two cookies called
loginpwd and
loginuser. I don't know how to do it in aspx but in PHP you would call the cookies something like this:
Code:
<INPUT TYPE=text VALUE="<? echo $_COOKIE['loginuser'] ?>"><BR />
<INPUT TYPE=text VALUE="<? echo $_COOKIE['loginpwd'] ?>"><BR />
Please remember that both the aspx page and the cookie password protection script must be on the same domain, otherwise you can't read the cookies (cookies work that way so that they can only be access from the domain name that set the cookies).
Also please note that the password is encrypted and not in plain text
/Andreas