vote up 0 vote down star
1

I'm interested in the meaning of the runtime error codes come from asp.net ajax like.

110|error|500|d:\ *PATH* \SomeControl.ascx(5): error CS1026: ) expected|

Does anybody knows where are can i find list of error codes with the meanings or has someone a collection?

Maybe it's a very general error i will figure out nothing from it but it's a "nice to know" thing.

flag

1 Answer

vote up 1 vote down check

Your control isn't compiling. Make sure you build your web site or solution.

An incomplete statement was found.

A common cause of this error is placing a statement, rather than an expression, within an inline expression in an ASP.NET page. For example, the following is incorrect

See here for more detail.

link|flag
I already figured out what was the problem,Thanks for help. :) The link posted by David Basarad contains the link for runtime error codes,so will mark as answer! Thanks for the link again! – Sad0w1nL1ght Sep 14 at 13:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.