How to handle connection error in asp.net

  • Thread starter Thread starter Chetana
  • Start date Start date
C

Chetana

Hi All,

I have one asp.net application in which connection gets expired after
some time on my server actually i m thinking on how the connection
gets removed because after some time I m getting error as

Can't find table

which gets after some time automatically .

If anyone has any idea about why this error is there and how to handle
this error please let me know.

Thanks
 
Chetana said:
Hi All,

I have one asp.net application in which connection gets expired after
some time on my server actually i m thinking on how the connection
gets removed because after some time I m getting error as

Can't find table

What table are you talking about?
which gets after some time automatically .

If anyone has any idea about why this error is there and how to handle
this error please let me know.

An ASP.NET Web solution is a connection-less/stateless session between the
Web server and a Web browser or Web solution such as a Web Service, no
connection is maintained with anything, unless you force or program
something to stay in Web session.

What are you talking about, because it doesn't make any sense?
 
Back
Top