Home   Free Applications   Code Snippets   Fun Stuff 
 
 You are here: Home > Code Snippets > ASP
Register   Login  

 
Site Navigation


Print Print this page
Email E-mail this page
Bookmark Add to Favorites

 
ASP
Tips, Tricks and Snippets for Active Server Pages

Update via Recordset Object
Posted by pwelter34 on Friday, October 17, 2003 (EST)
This is the ADO syntax to update a record using the "ADODB.Recordset". Also, this code will add a new record if it does not find the record to update.
(Read More... | 0 comments)
Average Rating:

Tree Builder - JScript
Posted by pwelter34 on Friday, October 17, 2003 (EST)
Builds a Threaded Tree from a recordset. This function does a callback to DisplayTree(oFilterRS, blnHasChild, intCurrentDepth). You must implement this function for this function to work.
(Read More... | 1 comments)

Return Primary Key on Insert
Posted by pwelter34 on Friday, October 17, 2003 (EST)
This is the correct syntax to return the primary key from the table after an insert.
(Read More... | 2 comments)

Build HTML Dropdown - JScript Version
Posted by pwelter34 on Friday, October 17, 2003 (EST)
The following function builds an HTML Dropdown from an open ADO recordset.
(Read More... | 0 comments)



Top