
|
While Executing the asp.net (C#) page. I found an error called Expected ')'. Actually the code block and design block doesn't contain any error..but it representing such error.. need to resolve it. kindly help me to solve this issue
dhipika g
|
|
|
|

|
The close brace is missing and you need to find it. Given the amount of code you've shown, I'd suggest looking over there behind the aspidistra.
Panic, Chaos, Destruction. My work here is done.
Drink. Get drunk. Fall over - P O'H
OK, I will win to day or my name isn't Ethel Crudacre! - DD Ethel Crudacre
I cannot live by bread alone. Bacon and ketchup are needed as well. - Trollslayer
Have a bit more patience with newbies. Of course some of them act dumb - they're often *students*, for heaven's sake - Terry Pratchett
|
|
|
|

|
It could be in a user control. You'll have to find it. If the compiler expects something, you must give it. It is king.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|

|
Try debugging your source code. Looks like a query has a missing bracket somewhere.
|
|
|
|

|
The error will be displayed in your 'Output' window. Double click on the error message and it should take you to the line of code that is in error.
Once at the line in error make sure you have the same amount of matching open and closing brackets.
You error is common with something like e.g.
lnTemp = Len(lsAmount
should be for example
lnTemp = Len(lsAmount)
I hope this helps.
Kind Regards
Julian Mummery
|
|
|
|

|
check all the files aspx.cs and .aspx and .cs files.
suchita
|
|
|
|