POC on Grid View with TextBox ,DropDown and Button
POC on Grid View with TextBox ,DropDown and Button A proof of concept on populating a grid view with data from the database .There is a dropdown which takes the list from the database . The textbox present in the gridview is used to add countries in the list of country in the database .On click of the button event the "grdView_RowCommand" is called and respective operation is performed. ASPX file <%@ Page Title="Home Page" Language="C#" CodeBehind="Default.aspx.cs" Inherits="Indexers2._Default" %> <form id="form1" runat="server"> <asp:GridView ID = "grdView" runat = "server" CellPadding = "5" AutoGenerateColumns="false" onrowcommand="grdView_RowCommand" ...