Vinod
Vinod

Reputation: 4892

How to get the clicked LinkButton text in GridView to a label in Popup Panel

I am using a modal popup inside a GridView for a LinkButton.

what i need is to use the value of clicked LinkButton to appear on a label on Popup panel
enter image description here

Upvotes: 0

Views: 13911

Answers (2)

Vinod
Vinod

Reputation: 4892

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

    <asp:LinkButton ID="lnkDummy" runat="server"></asp:LinkButton>
    <asp:ModalPopupExtender ID="LinkButton1_ModalPopupExtender" runat="server" DynamicServicePath="" Enabled="True" TargetControlID="lnkDummy" PopupControlID="Panel1"> </asp:ModalPopupExtender> 
    <asp:Panel ID="Panel1" runat="server" Height="164px" Width="284px" BackColor="#CCCCFF" ><br /><br /> 
          <center><asp:Label ID="Label2" runat="server" Text="Label"></asp:Label><br /><br /> 
          <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br /><br />
          <asp:Button ID="Button1" runat="server" Text="Do"/></center>
    </asp:Panel>


code

        protected void LinkButton1_Click(object sender, EventArgs e)
    {
        LinkButton Lnk = (LinkButton)sender;
        Label2.Text = Lnk.Text;
        LinkButton1_ModalPopupExtender.Show();
    }

Upvotes: 2

Neha
Neha

Reputation: 2965

LinkButton btndetails = (LinkButton)e.CommandSource;

you can now access the btndetails text where u wish to show.

Upvotes: 0

Related Questions