I am not very good with tables at all!!!
below is the page I am trying to modify:
ProductCart shopping cart software - Betties
I am trying to modify my default shopping cart code so I can have a form on the left and put a picture and text on the right beside it
here is a screen shot of the page:
table-1-SS.jpg 78.61K
42 downloadshere is my code from my contact.asp page:
<div id="pcMain">
<table class="pcMainTable">
<tr>
<td>
<h1><%response.write dictLanguage.Item(Session("language")&"_CustPref_12")%></h1>
</td>
</tr>
<tr>
<td class="pcSectionTitle">
<%response.write dictLanguage.Item(Session("language")&"_Contact_1")%>
</td>
</tr>
<tr>
<td>
<% If msg<>"" or request("msg")<>"" then %>
<%if request("msg")="security1" then%>
<div class="pcErrorMessage"><%response.write dictLanguage.Item(Session("language")&"_security_2")%></div>
<%else
if request("msg")="security2" then%>
<div class="pcErrorMessage"><%response.write dictLanguage.Item(Session("language")&"_security_6")%></div>
<%else
if msg<>"" then%>
<div class="pcErrorMessage"><%=msg%></div>
<%end if
end if
end if%>
<% end if %>
<form method="post" name="contact" action="contact.asp" onSubmit="return Form1_Validator(this)" class="pcForms">
<input type="hidden" name="updatemode" value="1">
<table align="center" class="pcShowContent">
<tr>
<td width="25%">
<h2>
<%response.write dictLanguage.Item(Session("language")&"_Contact_2")%>
</h2>
</td>
<td width="75%">
<p>
<input type="text" name="FromName" size="35" maxlength="70"
value="<%=pcf_FillFormField ("FromName", pcv_isNameRequired) %>">
<% pcs_RequiredImageTag "FromName", pcv_isNameRequired %>
</p>
</td>
</tr>
<tr>
<td>
<h2>
<%response.write dictLanguage.Item(Session("language")&"_Contact_3")%>
</h2>
</td>
<td>
<p>
<input type="text" name="FromEmail" size="35" maxlength="70"
value="<%=pcf_FillFormField ("FromEmail", pcv_isEmailRequired) %>">
<% pcs_RequiredImageTag "FromEmail", pcv_isEmailRequired %>
</p>
</td>
</tr>
<tr>
<td>
<h2>
<%response.write dictLanguage.Item(Session("language")&"_Contact_4")%>
</h2>
</td>
<td>
<p>
<input type="text" name="MsgTitle" size="35" maxlength="70" value="<%=pcf_FillFormField ("MsgTitle", pcv_isTitleRequired) %>">
<% pcs_RequiredImageTag "MsgTitle", pcv_isTitleRequired %>
</p>
</td>
</tr>
<tr>
<td valign="top">
<h2>
<%response.write dictLanguage.Item(Session("language")&"_Contact_5")%>
</h2>
</td>
<td valign="top">
<p>
<textarea rows="10" name="MsgBody" cols="35"><%=pcf_FillFormField ("MsgBody", pcv_isBodyRequired) %></textarea>
<% pcs_RequiredImageTag "MsgBody", pcv_isBodyRequired %>
</p>
</td>
</tr>
<tr>
<td colspan="2">
<%IF TurnOnSecurity=1 THEN%>
<!--#include file="../CAPTCHA/CAPTCHA_form_inc.asp" -->
<%END IF%>
</td>
</tr>
<tr>
<td colspan="2">
<p><input type="image" name="submit" value="Send message" src="<%=RSlayout("submit")%>" id="submit"></p>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</div>
**************************************
Best regards & thanks for any help on this
Sincerely,
Tony States


Sign In
Create Account

Back to top









