How to include DatePicker textbox inside gridview?

CialisGenn

New Member
I have used Asp.net GridView and ofcourse i have bounded it with my own , i have used the following code to select the table from DB and read all data into Gridview:\[code\] protected void Button2_Click(object sender, EventArgs e) { DataTable dt = DataProvider.ExecuteDataTable("[dbo].[Get_LastInsertedRowHowzeEducation_SP]", CommandType.StoredProcedure); GridView1.DataSource = dt; GridView1.DataBind(); } \[/code\]one of it's column ralated to BirthDate and i have designed a Jquery DatePicker textbox so i would like to include it inside one of Gridview column as a textbox and remove the default gridview textbox.so how can i do that?
 
Back
Top