I'm having some problems passing parameter values in ASP.
This is just a simple example that I created to try and test it out....the first ASP Posts to the 2nd.
Guts of form #1 -
<form method="POST" action="transact-BMD.asp" enctype="multipart/form-data">
<p><input type="text" name="frmHowListingID" size="5"></p>
<p> </p>
<p> </p>
<p><input type="submit" value="Submit"></p>
</form>
Guts of ASP #2
<%
Dim ListingNumber
ListingNumber = Request.Form ("frmHowListingID"
ListingNumber = CInt(ListingNumber)
response.write("ListingNumber="
response.write(ListingNumber)
%>
I'm inputting an integer in the first form.....and all that ever seems to print out is the value ZERO.
-Brian
This is just a simple example that I created to try and test it out....the first ASP Posts to the 2nd.
Guts of form #1 -
<form method="POST" action="transact-BMD.asp" enctype="multipart/form-data">
<p><input type="text" name="frmHowListingID" size="5"></p>
<p> </p>
<p> </p>
<p><input type="submit" value="Submit"></p>
</form>
Guts of ASP #2
<%
Dim ListingNumber
ListingNumber = Request.Form ("frmHowListingID"
ListingNumber = CInt(ListingNumber)
response.write("ListingNumber="
response.write(ListingNumber)
%>
I'm inputting an integer in the first form.....and all that ever seems to print out is the value ZERO.
-Brian