Sorry. I'm looking to list a 10 - 15 record history of the data the user entered. I would like to list it on the bottom of the same form used for the data entry. I need help in writing it out in asp. I already have the table created an the data entry form created and they work correctly. i have attached the code for the form I'm using
Code:
<H1 Align="Center"><span style="font-weight: 400">[u]AXZ E-Mail Disposition</u></span></H1>
<HTML>
<HEAD>
<STYLE>
BODY { background-color:#FFFFFF; font-family:verdana; }
.label { text-align:right; vertical-align:top; }
.control { text-align:left; vertical-align:top; }
.styling { border-style:solid; border-color:#666666; border-width:1px; font:bold; }
</STYLE>
<SCRIPT language=JavaScript>
function toggle(theID)
{
var field01;
field01 = document.getElementById(theID);
if(field01 != null)
field01.style.display = (document.forms[0].Concern.value == "other")? "block" : "none";
}
</SCRIPT>
</HEAD>
<BODY>
<form action="../AXZ/AXZ_Email_AddNew.asp" name="FrontPage_Form1" method="post" language="JavaScript">
<div align="left">
<TABLE BORDER='0' CELLSPACING='10' style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" width="888" height="205">
<TR>
<TD CLASS='label' WIDTH='186' height="20">Contact With</TD>
<TD CLASS='control' width="690" height="20">
<select CLASS='styling' name="Contact_With">
<option value=" "></option>
<option value="Sponsor">Sponsor</option>
<option value="Cust or Member">Cust or Member</option>
<option value="Other">Other</option>
</select>
</TD>
</TR>
<TR>
<TD CLASS='label' WIDTH='186' height="20">Plan</TD>
<TD CLASS='control' width="690" height="20">
<select CLASS='styling' name="Plan">
<option value=" "></option>
<option value="A">A</option>
<option value="Z">Z</option>
<option value="X-FN">X-FN</option>
<option value="D">D</option>
<option value="X">X</option>
</select>
</TD>
</TR>
<TR>
<TD CLASS='label' WIDTH='186' height="20">Country</TD>
<TD CLASS='control' width="690" height="20">
<select CLASS='styling' name="Country">
<option value="USA">USA</option>
<option value="Canada">Canada</option>
<option value="Other">Other</option>
</select>
</TD>
</TR>
<TR>
<TD CLASS='label' WIDTH='186' height="20">Language</TD>
<TD CLASS='control' width="690" height="20">
<select CLASS='styling' name="Language">
<option value="English">English</option>
<option value="French">French</option>
<option value="Spanish">Spanish</option>
<option value="Other">Other</option>
</select>
</TD>
</TR>
<TR>
<TD CLASS='label' WIDTH='186' height="20">Concern</TD>
<TD CLASS='control' width="690" height="20">
<select CLASS='styling' onchange="toggle('tobehidden'); return false;" name="Concern">
<option value=" "></option>
<option value="Program Enrollment">Program Enrollment</option>
<option value="Program Inquiry">Program Inquiry</option>
<option value="Vehicle Inquiry">Vehicle Inquiry</option>
<option value="Vehicle Pricing">Vehicle Pricing</option>
<option value="Suggestion/comment">Suggestion/comment</option>
<option value="Redirected">Redirected</option>
<option value="other">Other</option>
</select>
</TD>
</TR>
<TR ID='tobehidden' STYLE='display:none;'>
<TD CLASS='label' WIDTH='186' height="11">Description</TD>
<TD CLASS='control' width="690" height="11">
<TEXTAREA CLASS='styling' rows="1" cols="55" name="Description"></TEXTAREA><br>
If other was selected for the concern, Please give a brief
description</TD>
</TR>
<TR>
<TD CLASS='label' WIDTH='186' height="24"></TD>
<TD CLASS='control' width="690" height="24"><INPUT CLASS='styling' type='submit' value='submit'></TD>
</TR>
</TABLE>
</div>
</FORM>
</BODY>
</HTML>