Is any one else having this problem?

  • Thread starter Thread starter Rashad Rivera
  • Start date Start date
R

Rashad Rivera

I installed VS 2003 recently and I did not notice this error until a few
days later when I stumbled across it while checking my web pages
functionality.



http://www.omegusprime.com/light/?Page=Quote



It refers to a missing "}" in Microsoft's code. I know this because I did
not write the code mentioned in the error. The same problem occurs on my
development server too. Can someone please help me so I can get my site
back up.



- Rashad
 
Hi Rashad:

Is it possible you might have deleted a } from code the IDE generated
for you?
 
The error says that you are missing a right brace. Any good reason why you
don't just put in the right brace and see if the error is fixed?

Honestly, asking the question is fine, but fix the problem! This is one
time where the error message is not ambiguous!

--- Nick
 
Hi,

Remember that the aspx page are converted on the fly in classes, usually an
error like this means that the on-fly compilation of any of your aspx page
failed, do you have any asp.net code in your aspx pages ?
If so remove it, place it in the .cs file.

cheers,
 
Back
Top