0

私はこのように編成されたコントロールを持っています

代替テキスト

そして、呼び出し元のマスターページなどにjavascriptを登録して、このコントロールフォルダーがドロップされてから登録された場所ならどこでも、jsへのURLを見つける方法を知っているようにしたい.

これが私がこれまでに持っているものです(ユーザーコントロール内)

protected void Page_Load(object sender, EventArgs e)
{
    if(!Page.IsClientScriptBlockRegistered("jqModal"))
        Page.ClientScript.RegisterClientScriptInclude("jqModal", ResolveClientUrl("~js/jqModal.js"));
    if (!Page.IsClientScriptBlockRegistered("jQuery"))
        Page.ClientScript.RegisterClientScriptInclude("jQuery", ResolveClientUrl("~/js/jQuery.js"));
    if (!Page.IsClientScriptBlockRegistered("tellAFriend"))
        Page.ClientScript.RegisterClientScriptInclude("tellAFriend", ResolveClientUrl("js/tellAFriend.js"));
}

何か案は?

4

2 に答える 2

1

静的メソッドでヘルパー クラスを使用できます。

public static class PageHelper {
    public static void RegisterClientScriptIfNeeded( Page page, string key, string url ) {
        if( false == page.IsClientScriptBlockRegistered( key )) {
            page.ClientScript.RegisterClientScriptInclude( key , ResolveClientUrl( url ));
        }
    }
}

または、同じことを行うページ/ウェブコントロール/ユーザーコントロールの基本クラスに同様のインスタンスメソッドを含めることができます。

于 2008-09-24T15:38:20.890 に答える
0

投稿した画像が見当たりません。

また、Context.Itemsを使用して、アイテムがリクエストごとに1回だけ追加されるようにし、コントロール自体を介してjavascriptをレンダリングすることもできますが、registerclientスクリプトも優れていると思います。

    protected override void Render(HtmlTextWriter writer)
    {
        base.Render(writer);
        string[] items = new string[] { "jqModal", "jQuery", "tellAFriend" };
        //Check if the Script has already been rendered during this request.
        foreach(string jsFile in items)
        {          
            if (!Context.Items.Contain(sjsFile))
            {
                //Specify that the Script has been rendered during this request.
                Context.Items.Add(jsFile,true);
                //Write the script to the page via the control
                writer.Write(string.Format(SCRIPTTAG, ResolveUrl(jsFile)));
            }
        }
     }
于 2008-09-24T15:49:20.070 に答える