怎样在asp.net后台代码里面调用Bootstrap的模态窗口呢,大神求解
想实现在按钮点击之后,在后台代码中弹出模态窗口。
ClientScript.RegisterStartupScript(this.GetType(), "msg", "<script>$('.error-msg').modal('show');</script>");
使用上面那句话把js代码写到页面中,但是由于写入的位置不是在最后面无法实现效果,有木有大神知道这方面的求教呀!!!
ClientScript.RegisterStartupScript(this.GetType(), "msg", "<script>$('.error-msg').modal('show');</script>");
使用上面那句话把js代码写到页面中,但是由于写入的位置不是在最后面无法实现效果,有木有大神知道这方面的求教呀!!!
3 个回复
叶绛攸
赞同来自:
....
})
这么写试过吗
rew1011
赞同来自:
夜曲
赞同来自:
<asp:UpdatePanel ID="upMain" runat="server"></asp:UpdatePanel>
<script src="/plug-ins/jquery.min.js"></script>
<script src="/plug-ins/bootstrap/js/bootstrap.min.js"></script>
</form>