Anyone knows how to open a twitter bootstrap modal, from code behind?
I want to open the modal based on some requeriment at the moment of the save. Something like \"
This method of opening the Modal would not display the Modal for me. I found this as a work arround.
I removed:
ScriptManager.RegisterStartupScript(this,this.GetType(),"Pop", "openModal();", true);
Than I added an asp:label named lblJavaScript and in code behind call:
lblJavaScript.Text = "";
Now the Modal will display.