Posts

Showing posts from August, 2020

GridView examples using with Update Delete command in asp.net

Image
GridView examples using with Update Delete command in asp.net 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.OleDb; public   partial   class   ShowProducts : System.Web.UI. Page {      protected   void Page_Load( object  sender,  EventArgs  e)     {          if  (!Page.IsPostBack)         {             GridView1.AllowPaging =  true ;             GridView1.PageSize = 4;             showgrid();     ...

Radio Button Examples in asp.net

Radio Button Examples in asp.net using  System; using  System.Collections.Generic; using  System.Linq; using  System.Web; using  System.Web.UI; using  System.Web.UI.WebControls; public   partial class   RadioButtonPrograms : System.Web.UI. Page {      protected void  Page_Load( object sender,  EventArgs  e)     {         RadioButton1.AutoPostBack =  true ;         RadioButton2.AutoPostBack =  true ;         Label1.Text =  "" ;          if (RadioButton1.Checked)         {             Label1.Text =  "Your gender is "  + RadioButton1.Text;   ...