vote up -1 vote down star
1

Hello,

i've been working on this head-scratcher for a week.

I am able to load an ASCX via Jquery using AJAX/JSON. It was a success, however, it seems that I cannot do postbacks or even asyncronous postbacks using this dynamically created ASCX.

Is this possible?

flag

25% accept rate
are you using asp.net webforms or MVC? – ercu Aug 9 at 21:00
web forms – Martin Ongtangco Aug 10 at 13:08

4 Answers

vote up 0 vote down check

thanks for the excellent answer Jim.

yes, it is quite large indeed. Anyway, if that's the case, then I resort back in using IFrames inside the tabs.

Maybe this technique is reserved for tasks similar to the examples I've seen in websites such as an RSS reader.

link|flag
vote up 1 vote down

Put the UserControl (ASCX) on a page in a div and hide it through css/jquery.

The ASCX will load hidden, then unhide/show the div using AJAX/Jquery to update/refresh the data/display.

link|flag
thanks, but you just repeated what i said that i've already accomplished. – Martin Ongtangco Aug 9 at 9:18
ok, I thought you were trying to load an asax control, by inserting the tag dynamically, possible confusion after reading the first answer. Are you using asp.net buttons or html buttons? – Mark Redman Aug 9 at 9:54
hi, yes i am using asp.net buttons (controls). – Martin Ongtangco Aug 9 at 11:54
is it possible that ChildrenAsTriggers="false" on an UpdatePanel is supressing the Postbacks? – Mark Redman Aug 9 at 12:21
vote up 1 vote down

You're probably having problems because the buttons on your control are not added to the aspx's control container. It would probably be best to change any asp.net button controls to HTML buttons or links and handle any processing with javascript, handling "postbacks" with GET/POST query strings.

If you were able to get the control's buttons to postback properly, whatever page contains the iframe with the user control will be lost. i.e. you'd have to figure out some way to postback your aspx, and dynamically load the correct data into your generated control.

Instead of going through all that trouble, why not just add your control to an update panel? Is the dynamic content large?

link|flag
vote up 0 vote down

You can't call ascx page directly, they can't serve any html without added to aspx or render then dynamically in response to any page/handler.

i suggest to make the page as html and after that use the load in jquery

link|flag
i clearly stated that I've loaded the ascx in an aspx. why are you suggesting me to load the ascx in a html page? – Martin Ongtangco Aug 9 at 9:18
@Martin - He/She is trying to help. Why the attitude? – redsquare Aug 9 at 9:30
it is an inquiry. – Martin Ongtangco Aug 9 at 11:54

Your Answer

Get an OpenID
or

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