So what i can gather from your post is that you are not getting the partial
page updates with the UpdatePanel, correct?
Make sure you have EnablePartialRendering set to true, also i found if the
code behind method has the handles clause on it then the partial page
updates dont work - the whole page posts back,
>> Hi,
>>
[quoted text clipped - 8 lines]
>
> Sorry, that should be "no script at all"
JimL - 03 Aug 2007 11:55 GMT
> So what i can gather from your post is that you are not getting the partial
> page updates with the UpdatePanel, correct?
> Make sure you have EnablePartialRendering set to true, also i found if the
> code behind method has the handles clause on it then the partial page
> updates dont work - the whole page posts back,
Thanks Showjumper, I've actually nailed it - the script wasn't being
rendered because the old web.config file has a tag :-
<xhtmlConformance mode="Legacy"/>
comment that out, and "voila" all the scripting starts to work. This
wasn't mentioned in any of the documentation I looked at about adding
AJAX to existing projects, and it really ought to be heavily flagged,
as all my updates of our config file were correct, and I've had to
binary chop my way through the damn thing to find this. Of course, now
if I Google for "xhtml legacy ajax" there are all the other poor
suckers who have suffered from this bug.
Cheers everyone,
Jim