In normal asp 3.0 you would set a session via session("aspx")=true<BR><BR>How do you do this in asp.net?<BR><BR>same way?<BR><BR>Mikenever mind stupid error my bad disregardDid have one question, why does the following code generate "truetrue" versus just "true" when I view the web page.<BR><BR>session("aspxhere")=true<BR>response.write (session("aspxhere"))<BR><BR>mikesession("aspxhere")=true<BR>response.write (session("aspxhere"))<BR><BR>gives only "true" to me