1

masterpage があり、Baslik.aspx を使用しており、Baslik.aspx ページにスクリプトがあります。

コード ビハインドから Baslik.aspx の関数を呼び出したいのですが、firebug コンソールで自分の関数を確認できます。どうすれば修正できますか?

これは cs の call 関数です:

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "test", string.Format("SetPageWidth('{0}');", widthValue), true);

これは私の Baslik.aspx コードです:

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server
.
.
.
    <script type="text/javascript">   
   .
   .
   .
     function SetPageWidth(width) {
            console.log(width);
            $('.page').css("width", width);
            $('body').css("height", "auto");
        }
   </script>
</asp:Content>
4

1 に答える 1

0

これを試しましたか:

ScriptManager.RegisterClientScriptBlock(this.Page, this.Page.GetType(), "test", string.Format("SetPageWidth('{0}');", widthValue), true);
于 2012-05-07T03:09:09.557 に答える