VBScript/ASP Classic - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T05:32:32Zhttp://stackoverflow.com/feeds/question/26137http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26137/vbscript-asp-classic5VBScript/ASP ClassicJason Baker2008-08-25T14:38:38Z2009-10-22T03:28:18Z
<p>I have a couple of questions regarding VBScript and ASP Classic:</p>
<p>1) What is the preferred way to access an MS SQL Server database in VBScript/ASP?</p>
<p>2) What are best practices in regards to separating model from view from controller?</p>
<p>3) Any other things I should know about either VBScript or ASP?</p>
<p>If you haven't noticed, I'm new at VBScript coding. I realize numbers 2 & 3 are kind of giant "black hole" questions that are overly general, so don't think that I'm expecting to learn everything there is to know about those two questions from here.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/26181#2618116Answer by Michael Pryor for VBScript/ASP ClassicMichael Pryor2008-08-25T15:04:33Z2008-08-26T02:30:44Z<p>ADO is an excellent way to access a database in VBScript/Classic ASP.</p>
<pre><code>Dim db: Set db = Server.CreateObject("ADODB.Connection")
db.Open "yourconnectionstring -> see connectionstrings.com"
Dim rs: Set rs = db.Execute("SELECT firstName from Employees")
While Not rs.EOF
Response.Write rs("firstName")
rs.MoveNext
Wend
rs.Close
</code></pre>
<p>More info here:<a href="http://www.technowledgebase.com/2007/06/12/vbscript-how-to-create-an-ado-connection-and-run-a-query/" rel="nofollow">http://www.technowledgebase.com/2007/06/12/vbscript-how-to-create-an-ado-connection-and-run-a-query/</a></p>
<p>One caveat is that if you are returning a MEMO field in a recordset, be sure you only select ONE MEMO field at a time, and make sure it is the LAST column in your query. Otherwise you will run into problems.
(Reference:<a href="http://lists.evolt.org/archive/Week-of-Mon-20040329/157305.html" rel="nofollow">http://lists.evolt.org/archive/Week-of-Mon-20040329/157305.html</a> )</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/26315#263152Answer by JasonS for VBScript/ASP ClassicJasonS2008-08-25T16:02:54Z2008-08-25T16:02:54Z<p>On number 2, I think you have a few options...</p>
<p>1) You can use COM components developed in VB6 or the like to separate some of your business logic from your UI.</p>
<p>2) You can create classes in VBScript. There is no concept of inheritance and other more advanced features are missing from the implementation, but you can encapsulate logic in classes that helps reduce the spagehtti-ness of your app. Check out this: <a href="http://www.4guysfromrolla.com/webtech/092399-1.shtml" rel="nofollow">http://www.4guysfromrolla.com/webtech/092399-1.shtml</a></p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/26336#263363Answer by Ryan Rinaldi for VBScript/ASP ClassicRyan Rinaldi2008-08-25T16:19:15Z2008-08-25T16:19:15Z<p>Echoing some ideas and adding a few of my own: </p>
<p>1) Best way to access the database would to abstract that away into a COM component of some sort that you access from VBScript.</p>
<p>2) If you really wanted to you could write the controller in VBScript and then access that in the page. It would resemble a Page Controller pattern and not a Front Controller that you would see in ASP.NET MVC or MonoRail</p>
<p>3) Why are you doing this to yourself? Most of the tooling required to do this kind of work isn't even available anymore.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/26697#266970Answer by Jason Baker for VBScript/ASP ClassicJason Baker2008-08-25T19:33:07Z2008-08-25T19:33:07Z<p>@Ryan Rinaldi: I'd like to develop the site in a newer technology, but unfortunately, that's out of my hands.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/26699#266991Answer by George for VBScript/ASP ClassicGeorge2008-08-25T19:37:08Z2008-08-25T19:37:08Z<p>way way back in the day when VBScript/ASP were still ok
I worked in a utility company with a very mixed DB envrionment, I used to swear by this website:<a href="http://www.connectionstrings.com/" rel="nofollow">http://www.connectionstrings.com/</a></p>
<p>@michealpryor got it right</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/60335#603351Answer by Scott for VBScript/ASP ClassicScott2008-09-13T04:50:57Z2008-09-13T04:50:57Z<p>I've been stuck building on ASP, and I feel your pain.</p>
<p>1) The best way to query against SQL Server is with parameterized queries; this will help prevent against SQL injection attacks.</p>
<p>Tutorial (not my blog):<br>
<a href="http://www.nomadpete.com/2007/03/23/classic-asp-which-is-still-alive-and-parametised-queries/" rel="nofollow">http://www.nomadpete.com/2007/03/23/classic-asp-which-is-still-alive-and-parametised-queries/</a></p>
<p>2) I haven't seen anything regarding MVC specifically geared towards ASP, but I'm definitely interested because it's something I'm having a tough time wrapping my head around. I generally try to at least contain things which are view-like and things which are controller-like in separate functions. I suppose you could possibly write code in separate files and then use server side includes to join them all back together.</p>
<p>3) You're probably coming from a language which has more functionality built in. At first, some things may appear to be missing, but it's often just a matter of writing a lot more lines of code than you're used to.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/91504#915042Answer by jammus for VBScript/ASP Classicjammus2008-09-18T10:34:46Z2009-07-24T09:28:39Z<p>Remember to <em>program into</em> the language rather than program in it. Just because you're using a limited tool set doesn't mean you have to program like it's 1999.</p>
<p>I agree with JasonS about classes. It's true you can't do things like inheritance but you can easily fake it</p>
<pre><code>Class Dog
Private Parent
Private Sub Class_Initialize()
Set Parent = New Animal
End Sub
Public Function Walk()
Walk = Parent.Walk
End Function
Public Function Bark()
Response.Write("Woof! Woof!")
End Function
End Class
</code></pre>
<p>In my projects an ASP page will have the following:
INC-APP-CommonIncludes.asp - This includes stuff like my general libraries (Database Access, file functions, etc) and sets up security and includes any configuration files (like connection strings, directory locations, etc) and common classes (User, Permission, etc) and is included in every page.</p>
<p>Modules/ModuleName/page.vb.asp - Kind of like a code behind page. Includes page specific BO, BLL and DAL classes and sets up the data required for the page/receives submitted form data, etc</p>
<p>Modules/ModuleName/Display/INC-DIS-Page.asp - Displays the data set up in page.vb.asp.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/91513#915131Answer by jammus for VBScript/ASP Classicjammus2008-09-18T10:36:52Z2008-09-18T10:36:52Z<p>Also for database access I have a set of functions - GetSingleRecord, GetRecordset and UpdateDatabase which has similar function to what Michael mentions above</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/92146#921467Answer by Cirieno for VBScript/ASP ClassicCirieno2008-09-18T12:37:21Z2008-09-18T12:37:21Z<p>I had to walk away from my PC when I saw the first answer, and am still distressed that it has been approved by so many people. It's an appalling example of the very worst kind of ASP code, the kind that would ensure your site is SQL-injectable and, if you continue using this code across the site, hackable within an inch of its life.</p>
<p>This is NOT the kind of code you should be giving to someone new to ASP coding as they will think it is the professional way of coding in the language!</p>
<ol>
<li><p>NEVER reveal a connection string in your code as it contains the username and password to your database. Use a UDL file instead, or at the very least a constant that can be declared elsewhere and used across the site.</p></li>
<li><p>There is no longer any good excuse for using inline SQL for any operation in a web environment. Use a stored procedure -- the security benefits cannot be stressed enough. If you really can't do that then look at inline parameters as a second-best option... Inline SQL will leave your site wide open to SQL injection, malware injection and the rest. </p></li>
<li><p>Late declaration of variables can lead to sloppy coding. Use "option explicit" and declare variables at the top of the function. This is best practice rather than a real WTF, but it's best to start as you mean to go on.</p></li>
<li><p>No hints to the database as to what type of connection this is -- is it for reading only, or will the user be updating records? The connection can be optimised and the database can handle locking very efficiently if effectively told what to expect.</p></li>
<li><p>The database connection is not closed after use, and the recordset object isn't fully destroyed.</p></li>
</ol>
<p>ASP is still a strong language, despite many folks suggesting moving to .NET -- with good coding practices an ASP site can be written that is easy to maintain, scaleable and fast, but you HAVE to make sure you use every method available to make your code efficient, you HAVE to maintain good coding practices and a little forethought. A good editor will help too, my preference being for PrimalScript which I find more helpful to an ASP coder than any of the latest MS products which seem to be very .NET-centric.</p>
<p>Also, where is a "MEMO" field from? Is this Access nomenclature, or maybe MySQL? I ask as such fields have been called TEXT or NTEXT fields in MS-SQL for a decade.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/185205#1852051Answer by jwalkerjr for VBScript/ASP Classicjwalkerjr2008-10-08T22:42:54Z2008-10-08T22:42:54Z<p>I agree with @Cirieno, that the selected answer would not be wise to use in production code, for all of the reasons he mentions. That said, if you have just a little experience, this answer is a good starting point as to the basics.</p>
<p>In my ASP experience, I preferred to write my database access layer using VB, compiling down to a DLL and referencing the DLL via VBScript. Tough to debug directly through ASP, but it was a nice way to encapsulate all data access code away from the ASP code.</p>
http://stackoverflow.com/questions/26137/vbscript-asp-classic/1103513#11035131Answer by My Alter Ego for VBScript/ASP ClassicMy Alter Ego2009-07-09T12:25:32Z2009-07-09T12:25:32Z<p>AXE - Asp Xtreme Evolution is a MVC framework for ASP classic</p>
<p>There are some attempts at making test frameworks for asp:
aspUnit is good, but no longer maintained.</p>
<p>I saw a sample on how to make your own one a few months back.
The example used nUnit to call functions against the website for automatic testing.
I think i got it off <a href="http://www.beingnew.net/2008/11/automating-classic-asp-unit-tests-with.html" rel="nofollow">here</a> (my line is borked so I can't check)</p>