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>