Help: Runing asp app from server 2003 ???

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear all,

I have build asn ASP application which is collecting data from an SQL server
database through store procedure call

Running my we app from VS2003 environement works ok
Copy my application to Server 2003 and running it localy works Ok

But when accessing my web server from an other PC , it is not working
properly.
It either retunr no data from store procedure, or generate runtime error

I am using session in my application

Any idea what to check ?

regards
serge
 
Try a classic ASP group such as microsoft.public.inetserver.asp.general.
This one is for ASP.NET (which is the successor of ASP).

As a side note, I suggest posting there the exact error message you have
(you should always do that in your first post instead of waiting for someone
to ask what is the message dispklayed by your "runtime error")
 
I find out the reason.

if you set in your webconfig file under the section "SessionState" ,
cookieless=true then it fails. iT has to be set to false

any idea why ?
 
Back
Top