Hi,
Let's say i have 2 pages (page1 and page2) and ImageButton.
Is it possible to transfer gridview data of page1 to gridview of page2 when button is clicked using PostBackUrl ?
NB: Gridview of page2 is empty
Thanks in advance.
jamess says: form1.Controls.Add(gview);
form1.Controls.Add(gview);
instead of form1 use Panel1 like below. Where form1 is the id of html Form and Panel1 is the id of Panel control.
this.Panel1.Controls.Add(gview);
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.