Active Server Pages (ASP), also known as Classic ASP or ASP Classic, was Microsoft's first server-side script-engine for dynamically-generated web pages. The introduction of ASP.NET led to use of the term Classic ASP for the original technology.
82
votes
5answers
48k views
Optimistic vs. Pessimistic locking
I understand the differences between optimistic and pessimistic locking*. Now could someone explain to me when I would use either one in general?
And does the answer to this question change ...
46
votes
19answers
6k views
Are there benefits to Classic ASP over ASP.net [closed]
Having worked with Classic ASP for about 2 years now by creating a few 100 simple web forms I can't see a good reason for switching to .net; however, I'm not that versed in .net so I'm sure I could be ...
42
votes
5answers
28k views
Using ConfigurationManager to load config from an arbitrary location
I'm developing a data access component that will be used in a website that contains a mix of classic ASP and ASP.NET pages, and need a good way to manage its configuration settings.
I'd like to use a ...
42
votes
4answers
2k views
Can someone explain this SQL injection attack to me?
I wanted to post this here as it is very much coding related and was something I had to clean up this week on one of my company's old ASP (classic) sites.
We got hit with the SQL injection attack ...
39
votes
8answers
31k views
Any good libraries for parsing JSON in Classic ASP? [closed]
I've been able to find a zillion libraries for generating JSON in Classic ASP (VBScript) but I haven't been to find ANY for parsing.
I want something that I can pass a JSON string and get back a ...
29
votes
9answers
47k views
Detailed 500 error message, ASP + IIS 7.5
IIS 7.5 , 2008rc2, classic asp, 500 error msg:
The page cannot be displayed because an internal server error has occurred.
I need to know how to configure IIS to get a more detailed error.
I've ...
27
votes
11answers
35k views
Firefox Links to local or network pages do not work
I have a .asp application where image files (.PDF) are stored in a directory (fed by a copier/scanner). The created file names are stored in a database table, When a query is launched from the web ...
27
votes
2answers
23k views
Classic ASP on IIS7: refusing to send errors to browser on 500 Internal Server Error
I have classic ASP running on IIS 7.
Even though I configured the ASP "Debugging Properties" to "Send Errors to Browser = True", the web app REFUSES to send errors to the browser and continues to ...
24
votes
15answers
3k views
ASP.NET MVC reminds me of old Classic ASP spaghetti code
I just went through some MVC tutorials after checking this site out for a while. Is it just me, or does MVC View pages bring back HORRIBLE flashbacks of Classic ASP spaghetti code with all the ...
23
votes
17answers
22k views
What is the IDE for classic ASP and VBScript? [closed]
Yes, I'm stuck supporting a legacy ASP application. I currently have VS2008 installed but it complains incessantly about the ASP and VBScript I am dealing with. What would be a better IDE to use to ...
20
votes
5answers
21k views
will visual studio 2010 support classic asp?
I'm using visual studio 2008 for a classic asp application. Will I be able to upgrade to visual studio 2010?
19
votes
6answers
21k views
Calling REST web services from a classic asp page
I'd like to start moving our application business layers into a collection of REST web services. However, most of our Intranet has been built using Classic ASP and most of the developers where I work ...
19
votes
9answers
16k views
Classic ASP SQL Injection Protection
What is a strong way to protect against sql injection for a classic asp app?
FYI I am using it with an access DB. (I didnt write the app)
17
votes
13answers
1k views
Should new programmers learn ASP first or ASP.Net?
My colleague here argues that new programmers must learn ASP first, before they learn ASP.Net.
I seem to agree with him as most new programmers who start with ASP.Net do not understand web get, post ...
16
votes
7answers
31k views
Is try-catch like error handling possible in ASP Classic?
What options are there in ASP Classic for error handling?
For example:
I'm using the Mail.SendMail function but when switching on the testing server it doesn't work, which is normal. I want to test ...