来自ascx文件的脚本在ascx.cs中使用

时间:2017-05-31 02:04:46

标签: c# asp.net

我有一个来自ascx文件的脚本来隐藏弹出页面。当用户单击取消按钮时,此脚本当前使用。

ascx文件中的脚本:

<script>
function HidePopup() {
    $find("mpeDiscountedProducts").hide();
    return false;
}

我想在ascx.cs(代码后面)中使用此脚本,以便在用户单击“选择”按钮时隐藏弹出窗口。

下面我要放置脚本的代码:

 protected void btnSelect_Click(object sender, EventArgs e)
    {
        RemoveDiscountedItemsFromCart();
        AddToCart(1);
        this.Page.GetType().InvokeMember("CallFromDiscountProduct", System.Reflection.BindingFlags.InvokeMethod, null, this.Page, null);

    }

感谢。

1 个答案:

答案 0 :(得分:1)

呼叫

Page.ClientScript.RegisterStartupScript(
    this.GetType(), "Hide_mpeDiscountedProducts", "HidePopup()", true);

Documentation

"Hide_mpeDiscountedProducts"是一个标识脚本的任意键,这样如果页面上的另一个控件可能会注册相同的脚本,则可以避免两次注册。

您的按钮将触发回发,因此页面将刷新。当页面刷新时,它将包含一个<script>标记,其中包含对HidePopup()的调用。