Sujith S Nair
Sujith S Nair

Reputation: 738

How to avoid postback of parent page while using modal popup extender

I have a page which have a modalpopup. While i change the selected value of the dropdownlist in modalpopup, the whole page refreshes (ie. the parent page) and the controls below the popup blinks. My requirement is to avoid this postback of the parent page while selecting some control from the popup control. How can i achieve this using ajax modalpopup control?

My modal popup is within an update panel.

Regards, Sujith.S

Upvotes: 1

Views: 7995

Answers (4)

Arun Rana
Arun Rana

Reputation: 8606

Put your modal popup in updatepanel

Upvotes: 0

Anyname Donotcare
Anyname Donotcare

Reputation: 11393

U can use :

Jquery

or

Ajax

Look to this about popup window in asp.net

Upvotes: 0

Muhammad Akhtar
Muhammad Akhtar

Reputation: 52241

You have to put your dropdownlist in updatepanel to avoid full postback

Upvotes: 1

4b0
4b0

Reputation: 22323

On dropdownlist set
Autopostback = "false"

Upvotes: 1

Related Questions