Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Utilizzo di bootstrap modalpopup in ASP.NET

    <script type="text/javascript">
      function openModal() {
      $('#myModal').modal('show');
    }
    </script>

Nel tuo codice c# aggiungi un evento per linkbutton come

    protected void lbEdit_Click(object sender, EventArgs e) {   
     ScriptManager.RegisterStartupScript(this,this.GetType(),"Pop","openModal();", true);
    }