Bind Grid View using Session in ASP.Net

HTML The following HTML Markup consists of an ASP.Net GridView along with some TextBoxes and a Button in order to insert data in GridView control. < asp : GridView ID ="GridView1" runat ="server" CssClass ="Grid" AutoGenerateColumns ="false" EmptyDataText ="No records has been added."> < Columns > < asp : BoundField DataField ="Name" HeaderText ="Name" ItemStyle-Width ="120" /> < asp : BoundField DataField ="Country" HeaderText ="Country" ItemStyle-Width ="120" /> </ Columns > </ asp : GridView > < br /> < table border ="0" cellpadding ="0" cellspacing ="0" style =" border-collapse : collapse"> ...