0

コントロールを持つ GridView があります。(親ページの GridView の) この LinkBut​​ton をクリックすると、(ポップアップ GridView の)これをクリックするLinkButtonと、GridView と列を持つポップアップが開きます。 . ポップアップが閉じ、名前またはテキスト値が親ページに渡されます.. これだけの作業があります。PopUp GridView から取得したこの値を、最初に PopUp を呼び出した親ページの GridView に設定したくありません。LinkButtonsLinkButtonLinkButton

親ページ

 <asp:GridView ID="GridView1" runat="server">
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:LinkButton ID="LinkButton1" runat="server" onclick="LinkButton1_Click">click</asp:LinkButton>
                    <br />                    
                    <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>

<script type="text/javascript">
    function FillTextFromPopup(text) {
        alert(text);       
    }
</script>

*親ページのコード ビハインド *

protected void Page_Load(object sender, EventArgs e)
    {
        DataTable table = new DataTable();
        table.Columns.Add("Dosage", typeof(int));
        table.Columns.Add("Drug", typeof(string));
        table.Columns.Add("Patient", typeof(string));
        table.Columns.Add("Date", typeof(DateTime));

        table.Rows.Add(25, "Indocin", "David", DateTime.Now);
        table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
        table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
        table.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
        table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);

        GridView1.DataSource = table;
        GridView1.DataBind();
    }


    protected void LinkButton1_Click(object sender, EventArgs e)
    {            
            GridViewRow gvRow = (GridViewRow)(sender as Control).Parent.Parent;
            int index = gvRow.RowIndex;
            LinkButton lnk = (LinkButton)gvRow.FindControl("LinkButton1");
            string id = lnk.ID;
            Session["myID"] = id;
            string myScript;
            myScript = "<script>window.open('PopUpTest1.aspx?',null,'height=750, width=1024,status= no,resizable= no, scrollbars=yes,toolbar=no,location=no,menubar=no'); </script>";
            ScriptManager.RegisterStartupScript(this, this.GetType(), "pop", myScript, false);
        }

ポップアップページ

<asp:GridView ID="GridView1" runat="server">
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:LinkButton ID="LinkButton1" runat="server" onclick="LinkButton1_Click1" 
                        Text='<%# Eval("name") %>'></asp:LinkButton>
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>

ポップアップ ページのコード ビハインド

protected void Page_Load(object sender, EventArgs e)
    {
        DataTable table = new DataTable();
        table.Columns.Add("a", typeof(int));
        table.Columns.Add("b", typeof(string));
        table.Columns.Add("c", typeof(string));
        table.Columns.Add("d", typeof(DateTime));
        table.Columns.Add("name", typeof(string));

        table.Rows.Add(1, "Indocin1", "David1", DateTime.Now,"arbaaz");
        table.Rows.Add(2, "Enebrel1", "Sam1", DateTime.Now,"Ravish");
        table.Rows.Add(3, "Hydralazine1", "Christoff1", DateTime.Now,"Gulzar");
        table.Rows.Add(4, "Combivent1", "Janet1", DateTime.Now,"Anas");
        table.Rows.Add(5, "Dilantin1", "Melanie1", DateTime.Now,"Danish");

        GridView1.DataSource = table;
        GridView1.DataBind();
    }


    protected void LinkButton1_Click1(object sender, EventArgs e)
    {

        GridViewRow gvRow = (GridViewRow)(sender as Control).Parent.Parent;
        int index = gvRow.RowIndex;
        LinkButton lnk = (LinkButton)gvRow.FindControl("LinkButton1");        
        string myScript=lnk.Text;
        string aaa = "javascript:window.opener.FillTextFromPopup('"+myScript+"'); window.close();";
        ScriptManager.RegisterStartupScript(this, GetType(), ClientID, aaa, true);   

    }
4

1 に答える 1

0

親ページ グリッドの一部の値を変更するには、2 つの方法があります。

  1. 親ページ * DOM Element on java script にアクセスして変更するだけです。
  2. もう1つは、ポップアップを閉じるときにクエリ文字列を使用して親ページにデータを渡すことです。および親ページのオンロードは、必要に応じて変更できます
于 2013-10-01T08:41:50.140 に答える