Vijay,
I sincerely appreciate your efforts! And perhaps I'm just having troubles explaining myself. Could you please evaluate the following code and confirm that the syntax is correct. If so, I'll go back and look at other possible causes for this not working.
<%
Select Case (varPaymentType)
Case "Check"
Response.Write"<p>You have chosen to pay by check.</p>"
Case "Cash"
Response.Write"You have chosen to pay by cash. <br>"
Case "PayPal"
Response.Write"You have chosen to pay by credit card. Please click on the link below to pay securely via PayPal."
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="
[email protected]">
<input type="hidden" name="item_name" value="<%=Request("EName")%>">
<input type="hidden" name="amount" value="<%=strTotal%>">
<p>
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-butcc.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</p>
</form>
End Select
%>
Many thanks,
Jon