Learn Microsoft Access Advanced Programming Techniques, Tips and Tricks.

Friday, April 13, 2007

insert form html

Insert Form HTML Code

<html>
<head>
<title>Insert new data</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p>This form will insert a new record into the Category table
of the Northwind database.<hr></p>
<form name="frmInsert" method="post" action="insert.asp">
<p>
<b>Category Name</b><br>
<input type="text" name="txtCategory">
</p>
<p>
<b>Description</b><br>
<textarea name="txtDescription" rows="10" cols="40" ></textarea>
</p>
<input type="submit" name="Submit" value="Insert">
</form>
</body>
</html>
Click Next for insert.asp
  1. Installing the Personal Web Server (PWS)
  2. or Internet Information Services (IIS)
  3. Create the Example ASP Files
  4. Create a DSN Connection
  5. Connect to the Database
  6. Modify Access Data Online
  7. Inserting Data
  8. Modifying Data
  9. Deleting Data
  10. Data Insert Form

No comments:

Post a Comment

Comments subject to moderation before publishing.

Powered by Blogger.