-
Posted to
Classic ASP
by
salman_arshad
on
07-25-2009, 3:40 AM
Inspecting the server logs is a very good idea.
[EDIT]
2009-07-24 16:04:23 172.17.37.8 XXXXXX (SQLSvc) 10.28.18.89 443 GET /ccmadmin/reports/devicelistxjs1.asp - 302 0 Mozilla/4.0+(compatible;+Win32;+WinHttp.WinHttpRequest.5) -
2009-07-24 16:04:23 172.17.37.8 XXXXXX (SQLSvc) (SQLSvc) 10.28.18.89 443 GET ...
-
Posted to
PHP Community
by
salman_arshad
on
07-08-2009, 3:42 AM
Try resetting the permissions for the directory in which you extracted the files. I have had similar problems (not exactly the same though) and I was always able to fix them by resetting folder permissions. The problem usually occurred when I copied a folder containing a php app from desktop to wwwroot. The permissions from desktop (full control ...
-
Posted to
Classic ASP
by
salman_arshad
on
07-08-2009, 3:12 AM
You should not be loosing sessions after using Response.Redirect.
On the other hand, you should not expect to see sessions if you are redirecting from one website to another or from one IIS application to another.
A possible gotcha: Note that redirecting user from http://domain.com to http://www.domain.com also means that you will loose session. ...
-
Posted to
Classic ASP
by
salman_arshad
on
07-08-2009, 3:04 AM
/customerMail/Sample1.asp, line 31
What exactly is on line 31? I am pretty sure that the path from which you are trying to load or save the file is wrong. Possible reasons:
spelling mistake
missing slashes
destination folder does not already exits
-
Posted to
Classic ASP
by
salman_arshad
on
07-08-2009, 2:51 AM
If I am understanding correctly, you are asking the user to enter an email address and you want to send an email to the specified email address + another, hidden email address. In this case you can call the email function twice, specifying two different values for the "To" field. Alternatively you can add one recipient to the ...