Author: baby_pinky | Posted on: 5/28/2009 6:33:31 AM | Views : 1045

 Hi All,
Is that possible a webusercontrol (.ascx) pass the parameter to another webusercontrol?

 I have 2 .ascx which are IndustrySummary.ascx and PanelSummary.ascx. Both also contains gridview.
IndustrySummary.ascx wanted to pass a parameter to PanelSummary.ascx through a LinkButton whereas  PanelSummary.ascx is receiving the parameter through QueryStringParameter (Using SQLDataSource).

***IndustrySummary.ascx

<asp:GridView ID="gvwIndustrySummary" runat="server"
        DataSourceID="srcIndustrySummary" AutoGenerateColumns="False" >
    <Columns>
        <asp:TemplateField HeaderText="Name">
            <ItemTemplate>
         &nb ...

Go to the complete details ...