vote up 1 vote down star
1

I created a marker interface:

public interface ISupportAJAXPostsBacks{}

I added it to my Page..

public partial class MyWebForm : PageBase, ISupportAJAXPostsBacks

I have this check in my PageBase class...

if(this is ISupportAJAXPostsBacks)
{
   ... do some stuff ...
}

If I step through via the debugger, "this is ISupportAJAXPostsBacks" evaluates to true for the initial page load, but evaluates to false when an UpdatePanel posts back on that same page. (scratches head)

What is happening under the covers to cause this and what can I do about it?

flag

54% accept rate
Could be because only the contents of the update panel is being refreshed and not the entire page. It may all depend on where the call to that if statement is made. – ChadNC Oct 29 at 16:28
Could you add this code before you check if 'this is ISupportAjax' : Console.WriteLine(GetType().FullName); and tell us what is written in the Output view of visual studio ? – manitra Oct 29 at 16:53

2 Answers

vote up 0 vote down

I could not replicate your situation, but some ideas for things to check...

-the if statement should be in an override of OnLoad in your PageBase

-the if statement should be before the base.OnLoad(e) call in that override method

-check settings on your ScriptManager control... in particular the EnablePartialRendering and EnablePageMethods

I think the last item would only be an issue if you were actually using those methods, but if you do have them enabled I would try disabling them. Hope that helps.

link|flag
vote up 0 vote down

This may help:

Are you making these 3 common ASP.NET AJAX mistakes?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.