Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'am building an asp.net application that have a gridview inside an update pannel.

In this grid, I added a command field that raise a server event to fill fields on my modal popup hiden div section.

Off course, once filled, I want to display the modal popup to the user.

my issue is : how do I make that popup visible?

I use http://www.ericmmartin.com/projects/simplemodal/

the same way it work in the sample, the modal work well when I click on a client side link, but how may I invoke the show event from a server side even with asp.net (VB or C#)?

I am totally new to JQuery and AJAX, thanks for your help

Steph

share|improve this question

1 Answer

up vote 0 down vote accepted

Add this code to command button's click handler method:

ScriptManager.RegisterStartupScript((Control)sender, sender.GetType(), Guid.NewGuid().ToString(), 
    string.Format("$('#{0}').modal();", modalDiv.ClientID ), true);
share|improve this answer
Awwsome, thx so much – Stephane Oct 28 '11 at 22:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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