Click here to Skip to main content
15,881,644 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello Experts !


Am working on Asp.net Project using C#, SqlServer 2005.

presently am working on Gridview,

Firstly i have 4 textboxes above gridview and 4 textboxes in Gridview footer and a submit button outside girdview.

when i clicks the submit button outside gridview. all the data from outside textboxes and data from footer textboxes must be submitted in database.

Please help thanks in advance.
Posted
Comments
Richard C Bishop 12-Apr-13 10:04am    
What have you tried? Where is your code?

Hi Ranjith,

By now, you must be able to make Db calls for add/insert/update/delete a records in the DB.
So, im not going to tell you how to do that.

For, getting the GridView Footer row's Textbox value, you can search it this way,

C#
((TextBox)GridView.FooterRow.FindControl("Textbox_Name")).Text;


This should get you the value. You can get the rest of them similarly and make a Db call to save the values.

Happy Coding.!

Thank you,
Vamsi
 
Share this answer
 
VB
For Each objGridItem As Telerik.Web.UI.GridDataItem In grdQuestions.MasterTableView.Items()


SQL
Dim chk As CheckBoxList = objGridItem.FindControl("ChkListQuestion")
                   If Not chk.SelectedValue = "" Then
                       optioncode = chk.SelectedValue
                   End If



VB
Dim txtFreeText As TextBox = objGridItem.FindControl("txtQuestion")
                   suppliedtext = txtFreeText.Text



SQL
Dim dropDown As RadComboBox = objGridItem.FindControl("drpQuestion")
                   If Not dropDown.SelectedValue = "" Then
                       optioncode = dropDown.SelectedValue
                   End If


Next


dim dr as dropDown= GridView.FooterRow.FindControl("Dropdown1")).Text;
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900