Hi,
My attempt to insert a new condition into .aspx page of an email confirmation raises an error exception. I based my 'if' statement on the existing code
<% if (OrderData.DeliveryMethod != -1) { %> DeliveryAddress: <br />
<% if (OrderData.DeliveryMethod != -1) { %>
DeliveryAddress: <br />
/>
<% } %> and it looks like : <% if (OrderData.Solicitor == webapi) { %> <i>blah - blah - blah - blah</i><br /> <% } %> What am I missing? Thanks, Sabina Spilkin.
<% } %>
and it looks like :
<% if (OrderData.Solicitor == webapi) { %>
What am I missing?
Thanks,
Sabina Spilkin.
In the if condition where your checking the solicitor is webapi a variable? If not it should be enclosed in double quotes.
Jon, thank you very much !