I'm quit unfamiliar with ASP.NET applications and I've been struggling for some time to get something done:
I have a webform with a TextBox, CommandButton and a DataGrid. When I type a search term into the textbox and click the commandbutton, I want the DataGrid to show me the results.
Here's what I coded, but doesn't seem to work properly:
After clicking the button, the headers show, but the datagrid shows no records. I put a break before the DataBind call and the dataview appeared to be empty, count of 0 and the DataViewManager object is Nothing.
Obviously I'm doing something wrong with the DataView, but what?
Thanks a lot for your response!
Regards, Ruffnekk
---
Is it my imagination or do buffalo wings taste just like chicken?
I have a webform with a TextBox, CommandButton and a DataGrid. When I type a search term into the textbox and click the commandbutton, I want the DataGrid to show me the results.
Here's what I coded, but doesn't seem to work properly:
Code:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not Page.IsPostBack Then
'plDB is a web service that handles database interaction
'I verified that the dataset DsTotal1 is properly filled
plDB.FillDataset(DsTotal1)
DataView1 = DsTotal1.Tables(0).DefaultView
DataView1.RowFilter = "TypeNr = 'SV3111'"
dtList.DataBind()
'So far so good, the DataView1 has a count of 2,
'corresponding to the number of matches and the
'DataGrid displays the data properly
End If
End Sub
'Now for the event fired when I click the button
Private Sub btnSearchType_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearchType.Click
'Exit when nothing is entered
If txtTypeNumber.Text.Length = 0 Then Exit Sub
'Specify a new filtered selection
'(to be replaced by the text in the textbox)
DataView1.RowFilter = "TypeNr = 'SV3115'"
'Bind the data to the grid again
dtList.DataBind()
End Sub
After clicking the button, the headers show, but the datagrid shows no records. I put a break before the DataBind call and the dataview appeared to be empty, count of 0 and the DataViewManager object is Nothing.
Obviously I'm doing something wrong with the DataView, but what?
Thanks a lot for your response!
Regards, Ruffnekk
---
Is it my imagination or do buffalo wings taste just like chicken?