hornsby100
02-27-2007, 09:32 AM
Im am trying to use ASP for a booking system so that users can insert information iinto forms in a HTML page. I want this data to then be sent to a MS Access Database.
Code for Forms -
[CODE]
<form method="POST" action="finalacknowlegdement.asp">
<table width="408">
<tr>
<td width="192"><p>DATE REQUIRED FROM</p>
<p> </p></td>
<td style="width: 202px">
<input name="Date Required From" type="text" id="Date Required From">
</td>
</tr>
<tr>
<td><p>DATE REQUIRED TO </p>
<p> </p></td>
<td style="width: 202px">
<input name="Date Required To" type="text" id="Date Required To">
</td>
</tr>
<tr>
<td><p>FIRST NAME</p>
<p> </p></td>
<td style="width: 202px">
<input name="Firstname" type="text" id="Firstname">
</td>
</tr>
<tr>
<td><p>SURNAME</p>
<p> </p></td>
<td style="width: 202px">
<asp:sqldatasource id="Sqldatasource3" runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
<input name="Surname" type="text" id="Surname">
<asp:sqldatasource id="Sqldatasource4" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>NUMBER OF PEOPLE IN PARTY</p>
<p> </p></td>
<td style="width: 202px">
<input name="Number of people" type="text" id="Number of people">
<asp:sqldatasource id="Sqldatasource5" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>NAMES OF PEOPLE</p>
<p> </p></td>
<td style="width: 202px">
<textarea name="Names of people" rows="5" id="Names of people"></textarea>
<asp:sqldatasource id="Sqldatasource6"
runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>ADDRESS LINE 1</p>
<p> </p></td>
<td style="width: 202px">
<input name="Address Line 1" type="text" id="Address Line 1">
<asp:sqldatasource id="Sqldatasource7" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td style="height: 59px"><p>ADDRESS LINE 2</p>
<p> </p></td>
<td style="width: 202px; height: 59px">
<input name="Address Line 2" type="text" id="Address Line 2">
<asp:sqldatasource id="Sqldatasource8" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>TOWN/CITY</p>
<p> </p></td>
<td style="width: 202px">
<input name="Town/City" type="text" id="Town/City">
<asp:sqldatasource id="Sqldatasource9" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>COUNTY</p>
<p> </p></td>
<td style="width: 202px">
<input name="County" type="text" id="County">
<asp:sqldatasource id="Sqldatasource10" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>POSTCODE</p>
<p> </p></td>
<td style="width: 202px">
<input name="Postcode" type="text" id="Postcode">
<asp:sqldatasource id="Sqldatasource12" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource><asp:sqldatasource
id="Sqldatasource11" runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>COUNTRY</p>
<p> </p></td>
<td style="width: 202px">
<input name="Country" type="text" id="Country">
<asp:sqldatasource id="Sqldatasource13" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>PHONE NUMBER</p>
<p> </p></td>
<td style="width: 202px">
<input name="Phone Number" type="text" id="Phone Number">
<asp:sqldatasource id="Sqldatasource14" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>MOBILE NUMBER</p>
<p> </p></td>
<td style="width: 202px">
<input name="Mobile Number" type="text" id="Mobile Number">
<asp:sqldatasource id="Sqldatasource15" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>EMAIL ADDRESS</p>
<p> </p></td>
<td style="width: 202px">
<input name="Email Address" type="text" id="Email Address" value="">
<asp:sqldatasource id="Sqldatasource16"
runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p> </p>
<p> </p></td>
<td style="width: 202px"><input type="submit" name="Submit" value="Submit"> <asp:sqldatasource id="Sqldatasource17"
runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
<input type="reset" value="Clear" /> </td></tr>
</table>
</form>
[CODE/]
Does anyone have any ideas on how to do this?
Thanks
Code for Forms -
[CODE]
<form method="POST" action="finalacknowlegdement.asp">
<table width="408">
<tr>
<td width="192"><p>DATE REQUIRED FROM</p>
<p> </p></td>
<td style="width: 202px">
<input name="Date Required From" type="text" id="Date Required From">
</td>
</tr>
<tr>
<td><p>DATE REQUIRED TO </p>
<p> </p></td>
<td style="width: 202px">
<input name="Date Required To" type="text" id="Date Required To">
</td>
</tr>
<tr>
<td><p>FIRST NAME</p>
<p> </p></td>
<td style="width: 202px">
<input name="Firstname" type="text" id="Firstname">
</td>
</tr>
<tr>
<td><p>SURNAME</p>
<p> </p></td>
<td style="width: 202px">
<asp:sqldatasource id="Sqldatasource3" runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
<input name="Surname" type="text" id="Surname">
<asp:sqldatasource id="Sqldatasource4" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>NUMBER OF PEOPLE IN PARTY</p>
<p> </p></td>
<td style="width: 202px">
<input name="Number of people" type="text" id="Number of people">
<asp:sqldatasource id="Sqldatasource5" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>NAMES OF PEOPLE</p>
<p> </p></td>
<td style="width: 202px">
<textarea name="Names of people" rows="5" id="Names of people"></textarea>
<asp:sqldatasource id="Sqldatasource6"
runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>ADDRESS LINE 1</p>
<p> </p></td>
<td style="width: 202px">
<input name="Address Line 1" type="text" id="Address Line 1">
<asp:sqldatasource id="Sqldatasource7" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td style="height: 59px"><p>ADDRESS LINE 2</p>
<p> </p></td>
<td style="width: 202px; height: 59px">
<input name="Address Line 2" type="text" id="Address Line 2">
<asp:sqldatasource id="Sqldatasource8" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>TOWN/CITY</p>
<p> </p></td>
<td style="width: 202px">
<input name="Town/City" type="text" id="Town/City">
<asp:sqldatasource id="Sqldatasource9" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>COUNTY</p>
<p> </p></td>
<td style="width: 202px">
<input name="County" type="text" id="County">
<asp:sqldatasource id="Sqldatasource10" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>POSTCODE</p>
<p> </p></td>
<td style="width: 202px">
<input name="Postcode" type="text" id="Postcode">
<asp:sqldatasource id="Sqldatasource12" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource><asp:sqldatasource
id="Sqldatasource11" runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>COUNTRY</p>
<p> </p></td>
<td style="width: 202px">
<input name="Country" type="text" id="Country">
<asp:sqldatasource id="Sqldatasource13" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>PHONE NUMBER</p>
<p> </p></td>
<td style="width: 202px">
<input name="Phone Number" type="text" id="Phone Number">
<asp:sqldatasource id="Sqldatasource14" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>MOBILE NUMBER</p>
<p> </p></td>
<td style="width: 202px">
<input name="Mobile Number" type="text" id="Mobile Number">
<asp:sqldatasource id="Sqldatasource15" runat="server"
connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>" providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p>EMAIL ADDRESS</p>
<p> </p></td>
<td style="width: 202px">
<input name="Email Address" type="text" id="Email Address" value="">
<asp:sqldatasource id="Sqldatasource16"
runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
</td>
</tr>
<tr>
<td><p> </p>
<p> </p></td>
<td style="width: 202px"><input type="submit" name="Submit" value="Submit"> <asp:sqldatasource id="Sqldatasource17"
runat="server" connectionstring="<%$ ConnectionStrings:bookingcalendarConnectionString %>"
providername="<%$ ConnectionStrings:bookingcalendarConnectionString.ProviderName %>"
selectcommand="SELECT [First name] AS First_name, [Surname], [Address Line 2] AS Address_Line_2, [Address Line 1] AS Address_Line_1, [Names of People] AS Names_of_People, [Number of People] AS Number_of_People, [Town/City] AS column1, [County], [Postcode], [Country], [Email Address] AS Email_Address, [Mobile Number] AS Mobile_Number, [Phone Number] AS Phone_Number FROM [Client Database]"></asp:sqldatasource>
<input type="reset" value="Clear" /> </td></tr>
</table>
</form>
[CODE/]
Does anyone have any ideas on how to do this?
Thanks