Articles   Dev Forums   Personalize   Favorites   Member Login   ASP Hosting      Active Users:  147
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Wednesday, May 14, 2008
Home
Articles & Samples
ASP Hosting
Dev Search
Dev Forum
Add Your Articles
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts

Trusted by over 7 million customers!
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Database > Add Records
Search
DevASP

What's New
What's Hot

INSERT FORM DATA TO DATABASE       
Total Hits: 4462  |  Today: 0 Author: ASP Web Pro       Rating:  
Read Reviews | Write Review |              Your Rating: 

When a user submits a contact form, it is a good idea to record a copy of that email into a database for future reference. Here is how you can do it with MS Access....

Insert New Record       
Total Hits: 3534  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

There are a lot of instances where you may need to add new records to your database. For example, it is always a good idea to have your website contact form be recorded in your database for future reference....

Comport, Serial Communications       
Total Hits: 589  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Comport communication via modem, direct serial cable or any other asynchronous connection. Set baudrate, hardware flow control, software flow control, parity etc. yourself!...

Simple adding to a database       
Total Hits: 832  |  Today: 2 Author: Nickman0       Rating:  
Read Reviews | Write Review |              Your Rating: 

A simple script that adds a person's name into a database....

db Add / Insert       
Total Hits: 1962  |  Today: 2       Rating:  
Read Reviews | Write Review |              Your Rating: 

This 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), then Request your Form or QueryString variables (var1, var2, etc.), and INSERT them! By the way, make sure all your FIELD names and variable names are in the correct sequential order, or you're gonna run into all kinds of probs. FIELD, variable, FI...

Inserting records to a database       
Total Hits: 2072  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

This demo was given by Michael Bealer. He was very spirited about using the command object to insert, update and delete records. He was so kind to provide this demo and free code. I've not used the command object a whole lot but after easy demos like this I'm going to look into it! Hopefully he offers us more demo's on using the Command Object....

Add Records, Simple and Fast       
Total Hits: 887  |  Today: 0 Author: Glenn Barres       Rating:  
Read Reviews | Write Review |              Your Rating: 

The basis and structure of this code can also be used for many things. The main object we will be working with is a collection object...

Adding records to the database with ASP       
Total Hits: 326  |  Today: 0 Author: Faisal Khan       Rating:  
Read Reviews | Write Review |              Your Rating: 

No matter what kind of site you have got, you will need your ASP pages to access databases. ASP makes it easier to work with databases by providing support for ADO ( Activex Data Objects ). You already know how to build DSN ( Data Source Name ) and then access database, if you don't then you might want to check out my tutorial on Accessing Databases via ASP.In this article I will build on that tutorial to show you how to add records to the database. We will begin by exploring the insert statemen...

Adding Data to An Access Database       
Total Hits: 338  |  Today: 2 Author: Bruce Corkhill       Rating:  
Read Reviews | Write Review |              Your Rating: 

In this tutorial we are going to be adding data to the Guestbook database made in the tutorial Part: 1 Connecting to an Access Database. To make the Microsoft Access database tutorials on Connecting, Adding, Deleting, and Updating, more interesting we are going to use these tutorials to make a simple Guestbook....

Inserting Form content into Database with ASP       
Total Hits: 3587  |  Today: 2 Author: Faisal Khan       Rating:  
Read Reviews | Write Review |              Your Rating: 

In this article we will create a simple HTML Form and an ASP page. Any data which is entered by the user in that HTML Form will be received by the ASP action page and will enter that data into the Access database. After that we will create an ASP page to show all the records entered and to delete the specific records if wanted....

Adding a New Table       
Total Hits: 524  |  Today: 0 Author: rogrammersresource.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

This creates a new table named tblCustomer with the fields FirstName and LastName as text, and the field Age as number....

clsAccess - Connect to Access       
Total Hits: 1612  |  Today: 1 Author: Nick Stilwell       Rating:  
Read Reviews | Write Review |              Your Rating: 

This class allows you to browse folders to find access databases, and then connect to them automatically, return grids of records from tables, and edit individual rows, delete or add....

Adding Records To A Database Using SQL       
Total Hits: 1426  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

My purpose of this example is to show how to get records from an html form and submit that form to an ASP page. This ASP page will then use SQL to enter the records into the database. This example uses formatted SQL and the Execute method of the Connection object to take data from a html form and submit to an ASP page that processes the data using SQL....

Adding Records To Multiple Tables With One ASP Page       
Total Hits: 1941  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

This demo was put together to demonstrate how to use one HTML form to collect information and insert into multiple tables with one ASP page. This is based on something we've done in the past. It uses a combo of ADO inserts and Formatted SQL to insert the data! Enjoy.....

Adding Records To The Database With ASP       
Total Hits: 2006  |  Today: 0 Author: Faisal Khan       Rating:  
Read Reviews | Write Review |              Your Rating: 

Complete tutorial on adding records to the database via ASP for beginners. Both Connection and Recordset Objects discussed. Also get an insight on 'insert' SQL statement....

Insert Records - XML/ADO       
Total Hits: 1022  |  Today: 0 Author: Robbe D. Morris       Rating:  
Read Reviews | Write Review |              Your Rating: 

In the code example below, I've combined both functions into one ASP file for ease of reading. One of the major challenges I found was ADO's unwillingness to loadup an XML document with a connection open to a database....

Data Base Add / Update       
Total Hits: 3942  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

OK, so people are filling out forms on my website. How do I keep track of all these people and just add them to my database? Using the AddNew method, that's how! If ya wanna just update a specific record, all ya gotta do is comment out (') the .AddNew line, and it will update the record instead of adding a new one. Jeez, this is easy..
...

Adding Records to an Access Data Base Using ASP        
Total Hits: 3668  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Adding a new record to an Access Database can be really easy. This easy lesson has both pictures and code to get you going in adding those records taht you need in you database....

Adding Data to An Access Database       
Total Hits: 1142  |  Today: 0 Author: Bruce Corkhill       Rating:  
Read Reviews | Write Review |              Your Rating: 

In this tutorial we are going to be adding data to the Guestbook database made in the tutorial.In this tutorial we use an HTML form to take a site visitors name and comments and add these to the database....

Adding Records to Database       
Total Hits: 1044  |  Today: 0 Author: Programers       Rating:  
Read Reviews | Write Review |              Your Rating: 

A continuation of the Step by step database lesson. This article will step you through adding records to more than one table using the RecordSet object....


1  2  Next >> 


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com