Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Just in time compilation error

Status
Not open for further replies.

thysonj

Programmer
Joined
Jul 6, 2001
Messages
240
Location
US
Invalid parser construct found on line 206 at position 11. ColdFusion was looking at the following text:

IS
Invalid expression format. The usual cause is an error in the expression structure.
The last successfully parsed CFML construct was static text occupying document position (65:9) to (65:1).



what does this mean???
I simply changed some text in design mode and now the page doesn't work. I am using 4.5
 
I isolated where the problem is. Can someone puruse this and tell me what happened?

<CFIF IS isOldNetscape ?false?>
<DIV STYLE=&quot;FONT-WEIGHT: bold; FONT-SIZE: 12px; MARGIN-BOTTOM: 10px; COLOR: #333366; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot;>NESHAP User Login</DIV>
<DIV STYLE=&quot;FONT-SIZE: 11px; COLOR: #333366; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot;>Email Address:<BR>
<INPUT NAME=&quot;UserEmail&quot; SIZE=&quot;15&quot; MAXLENGTH=&quot;100&quot; STYLE=&quot;FONT-SIZE: 12px; MARGIN-BOTTOM: 10px; WIDTH: 183px; COLOR: black; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; HEIGHT: 21px&quot;></DIV>
<DIV STYLE=&quot;FONT-SIZE: 11px; COLOR: #333366; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot;>Password:<BR>
<INPUT TYPE=&quot;password&quot; NAME=&quot;UserPass&quot; SIZE=&quot;12&quot; MAXLENGTH=&quot;12&quot; STYLE=&quot;FONT-SIZE: 12px; MARGIN-BOTTOM: 0px; WIDTH: 127px; COLOR: black; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; HEIGHT: 21px&quot;>&nbsp;<input type=&quot;submit&quot; class=&quot;button&quot; NAME=&quot;Submit&quot; VALUE=&quot;Login&quot; STYLE=&quot;FONT-SIZE: 11px; MARGIN-BOTTOM: 0px; WIDTH: 49px; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; HEIGHT: 21px; TEXT-ALIGN: center&quot; onClick=&quot;return checkForm(this.form)&quot;></DIV>
<SPAN STYLE=&quot;FONT-SIZE: 9px; COLOR: #333366; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot;><A href=&quot;PasswordResend.cfm&quot;>Forgot your password?</A></SPAN>
<CFELSE>
<SPAN STYLE=&quot;FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: #333366; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot;>
NESHAP User Login</SPAN><BR><BR>

<SPAN STYLE=&quot;FONT-SIZE: 11px; COLOR: #333366; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot;>
Email Address:<BR>
<INPUT NAME=&quot;UserEmail&quot; SIZE=&quot;15&quot; MAXLENGTH=&quot;100&quot; STYLE=&quot;FONT-SIZE: 12px; MARGIN-BOTTOM: 10px; WIDTH: 183px; COLOR: black; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; HEIGHT: 21px&quot;
>

Password:<BR>
<INPUT TYPE=&quot;password&quot; NAME=&quot;UserPass&quot; SIZE=&quot;12&quot; MAXLENGTH=&quot;12&quot; STYLE=&quot;FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; HEIGHT: 21px&quot;>&nbsp;<input type=&quot;submit&quot; class=&quot;button&quot; NAME=&quot;Submit&quot; VALUE=&quot;Login&quot; STYLE=&quot;FONT-SIZE: 11px; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot; onClick=&quot;return checkForm(this.form)&quot;></SPAN><BR>

<A style=&quot;FONT-SIZE: 9px; COLOR: #333366; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif&quot; href=&quot;PasswordResend.cfm&quot; >Forgot your password?</A></CFIF>
 
I figured it out...just changed the cfif statement to
<CFIF isOldNetscape IS false>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top