Question

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.

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top