我正在调用jQuery
Modal弹出一些动态信息,如何从我的c#代码中设置模态弹出div的宽度。
这是我目前来自c#
的电话string jqmsg = " Dear Applicant,</br> <p>Your enquiry registered, The Email verification link has been sent to you registred Email ID " + txtEmail.Text + " and your registration reference ID is <Strong> " + Session["REGID"].ToString() + " </Strong></p>";
ClientScript.RegisterStartupScript(this.GetType(),"Popup", "ShowPopup('" + jqmsg + "');", true);
提前致谢。
答案 0 :(得分:1)
我以为我会回答上面的评论并给出答案,这样我就可以更轻松地显示代码了。这就是我的意思:
<强> c#中强>
function ShowPopup(message, width) {
// other ShowPopupCode
document.getElementById("modalDivId").style.width = width + 'px';
}
<强>的javascript 强>
{{1}}
这会对你有用吗?