for that you need to load config file and get the cookie
in the begining of the code
<!-- #include file="config.asp" -->
then you can do this:
strUserName = Request.Cookies(strUniqueID & "User")("Name")
and use:
<input type="text" name="txtUserName" value="<%=(strUserName)%>" disabled size="30">
<