ASPX ページにこの JavaScript コードがあります
<script>
function show_modal(statut)
{
if (statut == true)
{
$(function ()
{
$('#modal_success').modal('show')
})
}
else
{
$(function ()
{
$('#modal_fail').modal('show')
})
}
}
</script>
これは、コードビハインドから起動したい modalpopup を示しています。
私はこれを試しましたが、うまくいきませんでした:
if (resultat)
{
ClientScript.RegisterStartupScript(this.GetType(), "", "show_modal(true);");
}
else
{
ClientScript.RegisterStartupScript(this.GetType(), "", "show_modal(false);");
}
しかし、理由がわかりません!