Hello,
Needing some help with ASP. In one of our templets we have the below statement. If I take out the part about Print at Home, it run fine. But if I add in the Print at Home [else] statement, it errors out with invalid character in the header; ‘;’.
Thanks in advance for your help.
<% if (OrderData.DeliveryMethod == -1) { %>
Hold order at Box Office<br />
<i>Please pick up your tickets no later than 30 minutes before curtain.</i>
<% else if (OrderData.DeliveryMethod == 3) { %>
<b>Print at Home<br />
<i>You will receive your Print at Home tickets in a separate email.</i>
<% } else { %>
<tweb:AddressControl runat="server" id="uxDelivery" DefaultCountry="[country]" LineBreak="<br />" />
<% } %>
</td>
</tr>
<tr>
Thanks,
Bobby Moseley
Houston Ballet
601 Preston Street
Houston, TX 77002
(713) 535-3253
Hi Bobby,
Are you missing an ending curly brace after the if statement before the else?
Jon