S
Siegfried Heintze
I have edited my web.config file in an attempt to prolong the amount of time
my browser can site idle:
<sessionState mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data
source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="2000"
/>
This does not seem to help, however. I still get the following stack trace
when the web browser sits for more than 10 minutes (approx) with no
activity:
Line 238: void UpdateDataView(){
Line 239: DataSet ds = (DataSet)
Session["MyDataSet"];
Line 240: DataView dv =
ds.Tables["MyList"].DefaultView;It looks like a session problem to me. Why
does not chaning the timeout in the web.config file solve this problem?
Thanks,
Siegfried
my browser can site idle:
<sessionState mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data
source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="2000"
/>
This does not seem to help, however. I still get the following stack trace
when the web browser sits for more than 10 minutes (approx) with no
activity:
Line 238: void UpdateDataView(){
Line 239: DataSet ds = (DataSet)
Session["MyDataSet"];
Line 240: DataView dv =
ds.Tables["MyList"].DefaultView;It looks like a session problem to me. Why
does not chaning the timeout in the web.config file solve this problem?
Thanks,
Siegfried