COM ExplorerCOM Explorer is a unique tool specifically designed to enable developers and system administrators to explore, manage and fix ActiveX Controls, EXE Servers (Out-Proc) and DLL Servers (In-Proc). An Explorer like GUI allows developers to browse...
Combo BoxesPopulate your combo-boxes, pull-downs, html select lists, drop-downs, list-boxes, (whatever you call'm!) with data from your database. You think we would have agreed on a name for these friggin things by now, eh?! Ok, calm down.
Connect your dbHaven't connected your asp files to a database yet? What the?! Well, here is the code that we feel is the absolute easiest way to connect your pages to your database. Have your ISP create you a System DSN. Then just connect to that DSN with your page...
Continue..Want to just show a snippet from each record, and then show a couple dots at the end of the text if there is more text beyond what you are showing on the screen?
We are giving you two different examples here. The first one just shows how to...
Convert ASP applications to JSP.ASP2JSP is a tool to convert Active Server Pages (ASP) into Java Server Pages (JSP). All of the VBScript and any VB modules and classes are converted to Java. ASP2JSP eliminates the need to rewrite ASP applications in Java in order to gain more...
Count the recordsI hated that -1 that kept poppin up instead of showing me how many records were returned. You need to Set your recordset (first line) and THEN Open it (second line) with your connection (we used cnDZ) and use the adOpenStatic cursor.
csIniFileThis ASP component provides a comprehensive set of functions for reading, editing and creating Windows INI files. There are also some file utilities included.
db Add / InsertThis is another way of adding new records to your database. Use the INSERT method! We like using this one, because it keeps all our code on one line. (we're big fans of page speed, ya know). Anyway, just setup the connection to your db (we used cnDZ...