Skip to main content

Posts

Showing posts from July, 2013

Bind, Insert/Save, Edit, Update, Cancel, Delete, Paging in Grid View

Introduction In this article I am going to explain How to perform Bind, Insert/Save, Edit, Update, Cancel, Delete, Paging in Grid View in asp.net using C# language.

How to populate dropdown using database using linq to Sql and Sql

Hello every one today I am going to show you how you can bind a drop down list using  database. As The   Dropdown List   control also supports data binding. To bind the control to a data source below are main points that need to be consider ·          Create a data source that contains the items to display in the control. ·          Use the   Data Text Field   and   Data Value Field   properties to specify which field in the data source to bind to the   Text   and   Value properties of each list item in the control, respectively. ·          Control.DataBind   method to bi nd the data source to the Drop down List   control.