Code Samples
2 samples in ASP, sorted by popularity
<%@ Language="VBScript" %> <% Option Explicit Dim conn, rs, strSQL ...
Database Access with ADO ADO (ActiveX Data Objects) provides a high-level interface for accessing data from ASP pages. This code sample demonstrates…
<%@ Language="VBScript" %> <% Option Explicit Dim strUsername, strEmail, strPassword, strConfirm Dim arrErrors() ...
Server-Side Form Validation Always validate form input on the server, even if you also validate with JavaScript on the client. This code…