Hello,
I am trying to use a dropdownlist bound to a datagrid on ItemType. I have no problem getting the values populated into the lists, but when I try to create the command OnSelectedIndexChange for the dropdownlist i get the error "BC30408: Method 'Public Sub Update(sender As Object, E As...
Hello,
I am trying to use a datagrid to give summary data. However, the column I am trying to summarize is not counting correctly. Here is the code:
Private Sub SummaryGrid_ItemDataBound(ByVal sender As Object, _
ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles...
On Itemdatabound,
Dim drv As DataRowView = CType(e.Item.DataItem, DataRowView)
Then choose your datarow:
If drv("Datarow") = "Whatever You Want" Then
e.Item.BackColor = System.Drawing.Color.Orange
End If
Hello,
I am trying to use a datagrid to give summary data. However, the column I am trying to summarize is not counting correctly. Here is the code:
Private Sub SummaryGrid_ItemDataBound(ByVal sender As Object, _
ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles...
Tracking the activity on Page2 would not work because the controls on Page1 are being used to update the records.
Using session variables to track the page might work, though I am using a tab strip control(.ascx) to navigate between pages. Is calling a function on page1 from the control an...
Hello,
I am creating an ASP application and I am trying to call a stored procedure when the user changes the page within the application. For example, the user is on Page1, then navigates to Page2. When the user leaves Page1, I would like to update records on a server without having to click a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.