<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1005885" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1005885</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/membership-asp#comment-1031389</link>
    <description> &lt;p&gt;Ravi,&lt;/p&gt;
&lt;p&gt;This is a relatively simple thing to do. Just make a simple html form being sure to name all the input fields accordingly. Then make a handler page using an ASP file that will serve as the form action:&lt;/p&gt;
&lt;p&gt;Name = Request.Form(&quot;Name&quot;)&lt;br /&gt;
Age = Request.Form(&quot;Age&quot;) etc..&lt;/p&gt;
&lt;p&gt;Once you&#039;ve validated all your input and are ready to insert it into the table then you would do something like this (using ADO):&lt;/p&gt;
&lt;p&gt;&#039;---Make your ADO connection&lt;br /&gt;
Set Conn = Server.CreateObject(&quot;ADODB.Connection&quot;)&lt;/p&gt;
&lt;p&gt;&#039;---Create the record&lt;br /&gt;
Set RSSignup = Server.CreateObject(&quot;ADODB.Recordset&quot;)	&lt;/p&gt;
&lt;p&gt;&#039;---Pass your authentication&lt;br /&gt;
Conn.Open &quot;DSN=YourDB DSN;UID=YourID;PWD=YourPassword&quot;&lt;/p&gt;
&lt;p&gt;&#039;---Set connection type, open and add new record&lt;br /&gt;
RSSignup.ActiveConnection = Conn&lt;br /&gt;
RSSignup.CursorType = 3&lt;br /&gt;
RSSignup.LockType = 2&lt;br /&gt;
RSSignup.Source = &quot;YourTableName&quot;&lt;br /&gt;
RSSignup.Open&lt;br /&gt;
RSSignup.AddNew&lt;/p&gt;
&lt;p&gt;&#039;---All fields you&#039;re saving go here&lt;br /&gt;
RSSignup(&quot;Name&quot;) = Name&lt;br /&gt;
RSSignup(&quot;Age&quot;) = Age&lt;/p&gt;
&lt;p&gt;&#039;---Final Update of record, move cursor back to beginning of database and close&lt;br /&gt;
RSSignup.Update&lt;br /&gt;
RSSignup.MoveFirst&lt;br /&gt;
RSSignup.Close&lt;/p&gt;
&lt;p&gt;&#039;---Set connections to nothing to free memory&lt;br /&gt;
Set RSSignup = nothing&lt;br /&gt;
Conn.Close&lt;br /&gt;
Set Conn = nothing&lt;/p&gt;
&lt;p&gt;You&#039;ll have to make sure that all fields that you&#039;re going to save to your database have been validated before you save them. You&#039;ll also have to create the corresponding table that is going to hold all these values in your database.&lt;/p&gt;
&lt;p&gt;I hope that&#039;s not to confusing  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/wink.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Peter J. Boettcher&lt;/p&gt;
 </description>
     <pubDate>Sat, 04 Mar 2000 20:18:00 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1031389 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
