If IsNumeric(Request.QueryString("all") Then
is processing and giving an output...Request.QueryString("event")="all"
If IsNumeric(Request.QueryString("event")) Then
x="all"this returned as false to me.
response.write(IsNumeric(x))
Request.QueryString("eventthis should be an invalid statement and your page would have generated an error on screen.")="all"
Microsoft JET Database Engine error '80040e14'
Syntax error (missing operator) in query expression 'event_code=code_short AND event_start>Now() AND code_live=TRUE AND event_live=TRUE AND event_ID='.
If IsNumeric(Request.QueryString("event")) AND NOT (Request.QueryString="" OR Request.QueryString="?") Then
If IsNumeric(Request.QueryStrnope... what if you have this?ing("event ")) AND NOT (Request.QueryString="" OR Request.QueryString="?") Then
http://dev.gptouring.com.au/?x
http://dev.gptouring.com.au/?bla=
etc?
Microsoft JET Database Engine error '80040e14'
Syntax error (missing operator) in query expression 'event_code=code_short AND event_start>Now() AND code_live=TRUE AND event_live=TRUE AND event_ID='.
Im not even asking for Request.QueryString("event") on this page...
try post and examine the codes around:AND event_ID=
Open in new window
Miss )