I want to show a modal window that is the answer to an UPDATE to the BD of successful operation, I am defining the modal window in Response.Write
but it does not show me the window, I already load the jquery libraries, bootstrap but still not It shows me nothing
Response.Write(" <div class='modal fade' id='modal' tabindex='-1' role='dialog' aria-labelledby='myModalLabel'>" & _
" <div class='modal-dialog'>" & _
" <div class='modal-content'>" & _
" <div class='modal-header'>" & _
" <button type='button' data-dismiss='modal' aria-hidden='true'>x</button>" & _
" <div class='modal-body'>" & _
" <blockquote>" & _
" <p style='text-align:justify;'>Registro exitoso<span id='error2'></span></p>" & _
" </blockquote> " & _
" </div>" & _
" <div class='modal-footer'>" & _
" <a href='reporte_renov' data-dismiss='modal' class='btn btn-danger btnsalir'>Aceptar</a>" & _
" </div>" & _
" </div>" & _
" </div>" & _
"</div>")
* when I remove the class="modal fade" if it shows me the window like this: Am I missing something to show it properly?