![]() |
|
|
|||||||
![]() |
ASP Net - Please Help(Accessing Columns from a DG) |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
> Hi
> > What i have actually done is that i have bounded a datagrid from a tblTemp and then provided two checkboxes for the Admin to either approve or reject the record. I have implemented the reject f(). I have implemented the mechanism for detecting the checked boxes. > > but when the admin approves of a record, then some fields of that record must be copied to a tblCustomer and a tblUSer. > > I just want to know Can i be able to access all of the DG fields . I am currently not storing the info from tblTemp anywhere and am directly binding using ExecuteREader(). Will i have to use a Data Table or a DataSet? (CAn you give an example) . Thank You. > > I am attaching the f() so that u can see what options do i have. Regards Nabil 'Event Handler for Post Button ' Main Function that handles all public Sub OnPostClick(Sender as Object,e as EventArgs) Dim Approve as CheckBox = nothing Dim Reject as CheckBox = nothing For Each MyItem as DataGridItem in DataGrid1.Items ' Heres the job to find the checked ones Approve = MyItem.FindControl("Approve") Reject = MyItem.FindControl("Reject") if (Approve.Checked = true) then 'Check whether both have been Checked if(Reject.Checked = true) then ' NEEED a Continue(C#-VB Equivalent) statement here End if 'So approval is given ' Now here i need to access the elements of the DG(or any other technique u suggest) Else if (Reject.Checked = true) Then 'Rejection implies Deletion ' Code to delete End If Next End Sub Posted Via Usenet.com Premium Usenet Newsgroup Services ---------------------------------------------------------- ** SPEED ** RETENTION ** COMPLETION ** ANONYMITY ** ---------------------------------------------------------- http://www.usenet.com TheNAB |
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| swapping the rows and columns | shrikanthraon | General Help Related Topics | 0 | 08-14-2009 05:19 PM |
| Grouping two columns in VC.net | Viju | Software | 0 | 08-21-2007 01:22 PM |