Hello Sir
I have Dynamic gridview.
Now I want get All values for each Control from the dyanic gridview and also maintain it when page is postback.
My Code is Below.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using EMS;
using AjaxControlToolkit;
using System.IO;
using System.Web.Services;
public partial class Accordion_Student_ : System.Web.UI.Page
{
clsDBConnection con = new EMS.clsDBConnection();
DataSet dsResult = new DataSet();
DataTable dtResult = new DataTable();
Accordion accr1 = new Accordion();
Panel pl = new Panel();
AccordionPane ap1 = new AccordionPane();
GridView gv = new GridView();
CheckBox chk = new CheckBox();
Label lblmsg = new Label();
protected void Page_L ...
Go to the complete details ...