there are also 6 dropdownlist in addition too.
How would the INSERT syntax to sql then is coded? thanks
Main Topics
Browse All TopicsI have a grid with 7 columns. The third column is the unique /primary key but I hide it in the gridview1_rowcreated event.
First column is a an ItempTemplate with a checkbox. By placing a check in this checkbox indicates that this row has to be process. The second column (purchaseticket)is a checkbox where user will mark or not. By checking this column , it means that a purchaseticket is bought.
Column 3 to 5 are all bound columns/ fields to the 'Registration table. Column 6 and 7 are dropdownlist.
Whatever is selected in these 2 dropdownlist , the text has to be written to the registration table.
My question is how would I loop to the grid and check for the rows and INSERT it a tblProcess.
If column cells 1 is check,that means that the row has to be written to teh database. But it has to check also if columnticket(purchasingtic
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is a simple method for inserting data into SQL Server database as well as an example for retrieving the value(s) of DropDownList objects in a GridView. If you are using a default database with default connection string then this code will work as is. If not, must provide connection string in web.config to call. Note, this is not the only method, but a short and simple one.
By converting a bound field to a template field will expose the type of control and its id.>>>
Right now it is bound with sqldatasource1 and the Grid with the fields configured manually in the design.
So if I change it to Templatefields, should I get rid of teh datasource(sqldatsource1).
When converting to a template field the current bindings will remain intact. The output will look exactly the same until or unless you modify the template field in some way. You still need a datasource and the one you are using will work just fine.
Using template fields opens an entirely new level of possibilities but is also a different topic.
Business Accounts
Answer for Membership
by: JZoermanPosted on 2008-06-17 at 07:09:19ID: 21803189
You can loop through the rows and use FindControl to reference the object.
Select allOpen in new window