Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use ModalPopupExtender without having to set TargetControlID?

Tags:

I'd like to use a modalpopupextender in my asp.net page to show a sub form. But it only has to show on specific conditions. Those conditions are determined in a piece of javascript code.

So, most importantly, the modal popup doesn't have to show on a button click. However, if I leave the property TargetControlID empty I get the following exception:

The TargetControlID of 'ModalPopupExtender1' is not valid. The value cannot be null or empty. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The TargetControlID of 'ModalPopupExtender1' is not valid. The value cannot be null or empty.

Do I just have the TargetControlID to an hidden button or is there aslo a more decent option?

like image 588
Herman Cordes Avatar asked Mar 16 '10 14:03

Herman Cordes


2 Answers

Setting the TargetControlID to a hidden button(display:none;) is the best way as far as I know.

like image 96
Mike Avatar answered Oct 04 '22 18:10

Mike


The TargetControlID could also be set to a HiddenField type. That way you don't even need a button

like image 23
lovingit Avatar answered Oct 04 '22 19:10

lovingit