Goal: I have a thumbnail as a byte array in memory. Once a user uploads their image, I want to display it in an httphandler before writing it to the database. I have used th
Thorarin was correct. I had to implement IRequiresSessionState. What I didn't realize was that I then had to refer to the variable as
context.Session("oUser")
instead of
Session("oUser")