Click here to Skip to main content
15,881,559 members
Articles / Database Development
Article

Binding Grid View Control

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
11 Oct 2013CPOL1 min read 8.6K   2  
In this article I will sharing how to bind with GridView control with Database and without database using Data Table.Bind GridView with DatabaseI

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

In this article I will sharing how to bind with GridView control with Database and without database using Data Table.

Bind GridView with Database

I have define the GridView in the Web Form (Presentation Layer) and from this I am calling the method defined in BLL class (Business Logic Layer)

 

Here I am calling the method from presentation layer which was defined in BLL class (Business Login Layer)

Calling the BindEmpData class from the Web Form.
grdvTest.DataSource=BLL.BindEmpData(intEmpId);
grdvTest.DataBind();

Method in the BLL class and it is calling the other class in the Data Access Layer.
public static DataSet BindPlanData(int EmpId)
    {
        DataSet ds = new DataSet();
        ds = Dsll. GetEmployeeInfo(EmpId);
        return ds;
    }

Method defined in the DAL class

    public static DataSet GetEmployeeInfo(int intEmpId)
        {
            DataSet ds;
            int QType = 2;
            try
            {
                using (SqlConnection oConnection = new SqlConnection(ApplicationConnectionString()))
                {
                    SqlParameter[] parameters = new SqlParameter[1];

                    parameters[0] = new SqlParameter(intEmpId, System.Data.SqlDbType.Int);
                    parameters[0].Value = intEmpId

                    ds = SqlHelper.ExecuteDataset(oConnection, CommandType.StoredProcedure, "mySP_GetEmployeeInfo", parameters);
                }
                return ds;
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message + " GetEmployeeInfo", ex);
            }
        }

 


Bind GridView without Database using Data Table

void connectGrid()
    {
DataTable dt = new DataTable();
        dt.Columns.Add("EmpId");
        dt.Columns.Add("EmpName");
        dt.Columns.Add("EmpTel");

        dt.Rows.Add("10023", "Abdullah Khan", "882-2221");
        dt.Rows.Add("11002", "Abulrehman Ali", "882-1132");
        dt.Rows.Add("23211", "Asim Afzal", "KG", "882-4211");

        grdvTest.DataSource = dt;
        grdvTest.DataBind();
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
The ASP.NET Wiki was started by Scott Hanselman in February of 2008. The idea is that folks spend a lot of time trolling the blogs, googlinglive-searching for answers to common "How To" questions. There's piles of fantastic community-created and MSFT-created content out there, but if it's not found by a search engine and the right combination of keywords, it's often lost.

The ASP.NET Wiki articles moved to CodeProject in October 2013 and will live on, loved, protected and updated by the community.
This is a Collaborative Group

754 members

Comments and Discussions

 
-- There are no messages in this forum --