hi there.. im having some trouble here and i dont know why.
im using this code
basically zid will be a number such as p1,p10,p200.. etc
the above code should display those textboxes if the p number is more then 1.. but less than 321.
so here is the first test.. for the sake of testing you can see the P number on the page and the postcode and drop off address form fields that should appear.
p3 working
http://www.londonheathrowcars.com/f...3%20-%20City,%20Bank&Pid=p3&FCar=Saloon%20car
and then for some reason, the id p4 doesnt show those fields.. illustrated here.
http://www.londonheathrowcars.com/f...0-%20City,%20Holborn&Pid=p4&FCar=Saloon%20car
does anyone know why this is happening?
im using this code
Code:
<%
If zid >= "p1" and zid <= "p321" Then
%>
<p class="mainpage"><%=zpostcode%><br /></p>
<p class="mainpage">Full postcode (eg W1 5AB):</p>
<p><input style="margin-left:20px;width:85px;" type="text" class="txtbox" id="fullpostcode" name="fullpostcode" /></p><br />
<p class="mainpage">* Drop off address:</p>
<p><textarea style="margin-left:20px;width:300px;" class="long" id="dropoffaddress" name="dropoffaddress" cols="45" rows="3"></textarea></p>
<br />
<%
End If
%>
basically zid will be a number such as p1,p10,p200.. etc
the above code should display those textboxes if the p number is more then 1.. but less than 321.
so here is the first test.. for the sake of testing you can see the P number on the page and the postcode and drop off address form fields that should appear.
p3 working
http://www.londonheathrowcars.com/f...3%20-%20City,%20Bank&Pid=p3&FCar=Saloon%20car
and then for some reason, the id p4 doesnt show those fields.. illustrated here.
http://www.londonheathrowcars.com/f...0-%20City,%20Holborn&Pid=p4&FCar=Saloon%20car
does anyone know why this is happening?