Click here to Skip to main content
15,886,063 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
hi,
sorry for the title i have error, i have page mape wich it's apear many state whene i click i one of them i want to redirect in page graphe wich apear graphe of ths state it works but when i want to do any think in this page like click button to aprer samething i have Uncaught Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException and the into this button not work
and this is the error

An error occurred because a control with id ' ctl09 ' was not found or other control is assigned to the same ID after publication ( postback ) . If the ID is not assigned , explicitly set the ID property of the controls that trigger the release event to avoid this error .

plz i need help very quickly (sorry for my bad english)
Posted
Comments
Sinisa Hajnal 26-May-15 2:27am    
You have to show relevant code, especially because english is not your first language. Helps with any misunderstandings. Also, not knowing english is no excuse for not capitalizing letters and adding punctuation.

My guess (and it is a guess) is that in one javascript method you're trying to access ctl09 and it doesn't exists because (if you look at page source) it is called ctl00_pnl01_ctl09 or something like that (server side controls get their names mangled so they are unique on the page). You can access corrent name in javascript like this: <%=ctl.ClientId %>

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900