设置Jquery模式的宽度弹出div来自c#后面的代码

时间:2015-10-22 07:41:20

标签: c# jquery asp.net

我正在调用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);

提前致谢。

1 个答案:

答案 0 :(得分:1)

我以为我会回答上面的评论并给出答案,这样我就可以更轻松地显示代码了。这就是我的意思:

<强> c#中

function ShowPopup(message, width) {
    // other ShowPopupCode
    document.getElementById("modalDivId").style.width = width + 'px';
}

<强>的javascript

{{1}}

这会对你有用吗?