T
TheNAB
Hi
approve or reject the record. I have implemented the reject f(). I
have implemented the mechanism for detecting the checked boxes.
directly binding using ExecuteREader(). Will i have to use a Data
Table or a DataSet? (CAn you give an example) . Thank You.
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
tblTemp and then provided two checkboxes for the Admin to eitherWhat i have actually done is that i have bounded a datagrid from a
approve or reject the record. I have implemented the reject f(). I
have implemented the mechanism for detecting the checked boxes.
record must be copied to a tblCustomer and a tblUSer.but when the admin approves of a record, then some fields of that
am currently not storing the info from tblTemp anywhere and amI just want to know Can i be able to access all of the DG fields . I
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