Hello
I'm trying to convert my application to work without postbacks. I want to do it with a minimal cost (application is sufficiently extended). I've decided to use UpdatePanel and it almost work but i've got two problems:
1) There is some menu from which I run "windows" (create some new frames). Menu work fine with update panel, new frames creates well. The problem is when i'try to run new frame from other (existing) frame (each frame have own updatepanel). The code, and scripts are exactly the same, but menu works and "from frame" don't. The new frame is always creating by Page.Responce.Write("and ther is some javascript")
The error message i'm getting is:
Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed.
Details: Error parsin near '<script language=jav'
I think it's some problem with scriptmanager, becouse executing first time works. Maybe you have meet similar problem.
2) I'm adding some "windows" (controls) on MainPanel (which is placed on updatepanel - and it's onle change i've made). Each of them have some script and they can be moved on page. Before adding update panel it worked well but now they dock somewhere on MainPanel and there is no chance to move them. There is no error they are just unmoveable. Maybe you know such problem but better the solution ;)
I'll be gratefull if someone can interest my post and try to help me.
Thanks