web-dev-qa-db-ja.com

ASP.NETの分離コードファイルからIFRAMEにアクセスするにはどうすればよいですか?

コードビハインドaspx.csファイルからIFRAME htmlコントロールの属性を設定しようとしています。

私は post に出くわしました。FindControlを使用して、次を使用してASP以外のコントロールを見つけることができます。

Aspxファイルには次が含まれます。

<iframe id="contentPanel1" runat="server" />

そして、分離コードファイルには以下が含まれます。

protected void Page_Load(object sender, EventArgs e)
{
    HtmlControl contentPanel1 = (HtmlControl)this.FindControl("contentPanel1");
    if (contentPanel1 != null)
        contentPanel1.Attributes["src"] = "http://www.stackoverflow.com";

}

コントロールが見つからない場合を除き、contentPanel1はnullです。


更新1

レンダリングされたhtmlを見る:

<iframe id="ctl00_ContentPlaceHolder1_contentPanel1"></iframe>

コードビハインドを次のように変更してみました。

HtmlControl contentPanel1 = (HtmlControl)this.FindControl("ctl00_ContentPlaceHolder1_contentPanel1");

if (contentPanel1 != null)
    contentPanel1.Attributes["src"] = "http://www.clis.com";

しかし、それは助けにはなりませんでした。

masterPageを使用しています。


更新2

Aspxファイルを次のように変更します。

<iframe id="contentPanel1" name="contentPanel1" runat="server" />

助けにもならなかった


回答

答えは明らかであり、元の質問をすることすらできません。 aspxコードがある場合:

<iframe id="contentPanel1" runat="server" />

コードビハインドファイルからiframeにアクセスするには、アクセスするだけです。

this.contentPanel1.Attributes["src"] = "http://www.stackoverflow.com";
26
Ian Boyd

Iframeがコードが実行されているページに直接ある場合、直接参照できるはずです。


contentPanel1.Attribute = value;

そうでない場合(子コントロールまたはMasterPage内にある場合)、ページの階層をよく理解する必要があります...または、FindControl()の再帰バージョンを作成するブルートフォースメソッドを使用します。

12
AaronSieb

これは私のために働く。

ASPX:

<iframe id="ContentIframe" runat="server"></iframe>

Idを介してiframeに直接アクセスできます。

後ろのコード:

ContentIframe.Attributes["src"] = "stackoverflow.com";
12
Mark Ibanez

使用してみてください

this.Master.FindControl("ContentId").FindControl("controlId")

代わりに。

1
Joe Ratzer

Iframeはどこに埋め込まれていますか?

このコードを持つ

<body>

<iframe id="iFrame1" runat="server"></iframe>

<form id="form1" runat="server">

<div>
      <iframe id="iFrame2" runat="server"></iframe>
</div>
</form>

iFrame1.Attributes["src"]を使用して、iFrame2ではなくiFrame1にのみアクセスできます。

または、次の方法でフォームの任意の要素にアクセスできます。

FindControl("iFrame2") as System.Web.UI.HtmlControls.HtmlGenericControl
1
Jorge

これを試して。

ContentPlaceHolder cplHolder =(ContentPlaceHolder)this.CurrentMaster.FindControl( "contentMain");

HtmlControl cpanel =(HtmlControl)cplHolder.FindControl( "contentPanel1");

0
Nathan Pillai

Loadイベントの外側でcontentPanel1のインスタンス化を試みてください。クラスに対してグローバルに保持します。

0
Ian Jacobs

FindControlメソッドは、メソッドが実行される「コントロール」の子コントロールを検索します。コントロールコレクションを再帰的に調べてみてください。

    protected virtual Control FindControlRecursive(Control root, String id)
    {
        if (root.ID == id) { return root; }
        foreach (Control c in root.Controls)
        {
            Control t = FindControlRecursive(c, id);
            if (t != null)
            {
                return t;
            }
        }
        return null;
    }
0
RyanFetz

あなたの提案は私には役に立たなかった、ここに私の解決策があります:

add src="<%=_frame1%>" //to the iframe id="frame1" html control
public string _frame1 = "http://www.google.com";
0
andyc
<iframe id="yourIframe" clientIDMode="static" runat="server"></iframe>

Findcontrolメソッドを使用してiframeを見つけることができるはずです。

clientIDModeStaticに設定すると、レンダリング中にオブジェクトの名前が変更されなくなります。

0
Sedecimdies