Hello
I'm using ASP.NET 2003 on Windows XP SP2. I'm providing a web form that allows users to upload a document (xls, images, doc, pdf, etc) to the server. This part works fine, but after the form posts to the server, all of my session variables are cleared out. The Session.Session ID is not affected, but the rest are blank. How do i keep these values populated while using this upload method?
[HTML]
<form name="form1" runat="server" enctype="multip art/form-data" ID="Form1">
.
.
</form>
[/HTML]
I write the session variables to the screen when it does it's initial load (and the session variables are correct), and after the form is submitted (this is when i lose my values).
I'm using ASP.NET 2003 on Windows XP SP2. I'm providing a web form that allows users to upload a document (xls, images, doc, pdf, etc) to the server. This part works fine, but after the form posts to the server, all of my session variables are cleared out. The Session.Session ID is not affected, but the rest are blank. How do i keep these values populated while using this upload method?
[HTML]
<form name="form1" runat="server" enctype="multip art/form-data" ID="Form1">
.
.
</form>
[/HTML]
I write the session variables to the screen when it does it's initial load (and the session variables are correct), and after the form is submitted (this is when i lose my values).
Comment