I'm relatively new to ASP programming. I have a user login page that is throwing an error to the browser which reads,
Microsoft VBScript compilation error '800a03f6'
Expected 'End'
/*******.asp, line 83
This error is being thrown on page load, as opposed to when one of the buttons is clicked to execute the VBscript control code.
Line 83 looks like this:
<TD CLASS=ListHeader ALIGN=LEFT WIDTH=100% HEIGHT=25><% = UCASE(sHeaderTitle) %></TD>
The surrounding table rows <TR> and table <TABLE> are all properly closed, and in the VBscript code further up the page, all if statements are properly ended. I'm puzzled as to what 'End' could be missing?
Microsoft VBScript compilation error '800a03f6'
Expected 'End'
/*******.asp, line 83
This error is being thrown on page load, as opposed to when one of the buttons is clicked to execute the VBscript control code.
Line 83 looks like this:
<TD CLASS=ListHeader ALIGN=LEFT WIDTH=100% HEIGHT=25><% = UCASE(sHeaderTitle) %></TD>
The surrounding table rows <TR> and table <TABLE> are all properly closed, and in the VBscript code further up the page, all if statements are properly ended. I'm puzzled as to what 'End' could be missing?