M
Michel Couche
Hello,
I have an ASP.Net application that uses the Wizard control to build a newsletter.
There are three steps in the wizard.
The customer's specific design data are loaded from a database in step 1 of the wizard and saved into a session variable.
In step 2, when the user clicks on a button, I load the design data from the session variable and these are saved for further handling in a HashTable.
The HashTable is defined in the general declarations of the page class:
Dim HT_HTMLData As Hashtable
The code to load the hashtable is as follows:
Private Function Send_TestMail() As Boolean
Try
HT_HTMLData = Session("HTMLData") ' // Line X
.....
After loading the page on the production server, on some PC's everything is OK, no error message.
On other PC's I receive an "Object reference not set to an instance of an object" on line X. Some PC's receive this error more frequently than others. AFAIK, the error is not due to a timeout problem. The tests have been repeated and the inconsistency is consistant (... if I may say so ....)
Any help to solve this sporadic error will be most appreciated
Michel
I have an ASP.Net application that uses the Wizard control to build a newsletter.
There are three steps in the wizard.
The customer's specific design data are loaded from a database in step 1 of the wizard and saved into a session variable.
In step 2, when the user clicks on a button, I load the design data from the session variable and these are saved for further handling in a HashTable.
The HashTable is defined in the general declarations of the page class:
Dim HT_HTMLData As Hashtable
The code to load the hashtable is as follows:
Private Function Send_TestMail() As Boolean
Try
HT_HTMLData = Session("HTMLData") ' // Line X
.....
After loading the page on the production server, on some PC's everything is OK, no error message.
On other PC's I receive an "Object reference not set to an instance of an object" on line X. Some PC's receive this error more frequently than others. AFAIK, the error is not due to a timeout problem. The tests have been repeated and the inconsistency is consistant (... if I may say so ....)
Any help to solve this sporadic error will be most appreciated
Michel