Ask a Question related to ASP.NET General, Design and Development.
-
Bob #1
reuse repeater with new recordset
I have a repeater that is populated with a select *. Above the
repeater I have a series of dropdowns that allow the user to select a
different search criteria. Now my question is how can I reuse the
repeater and populate it with the new data.
This code populates the repeater with the initial data.
Dim myDS As New DataSet
Dim dAdapter As New SqlDataAdapter(SPAppEvents, connStr)
dAdapter.Fill(myDS)
textBased.DataSource = myDS.Tables(0).DefaultView
textBased.DataBind()
dAdapter.Dispose()
myDS.Dispose()
Thanks in advance
Bob Guest
-
Reuse value in another file?
When processing a form I am reading in a value to a mysql database. I then redirect the user to a "thank you" page with Header. What I would like is... -
Reuse of Model in Front End
Good afternoon. I have a question about being able to reuse a model object in both the web services side and client side. Suppose I create a data... -
how to reuse sub
How can I reuse a subroutine? My environment is redhat 9, apache2, perl-5.8.0-88, mod_perl-1.99_07-5. I've tried to put the sub in a separate... -
RecordSet.Move or RecordSet.AbsolutePosition??
Hi, I'm trying to use either one of these methods to position the cursor in a specific position inside a recordset, but neither one seems to... -
DataGrid Reuse
I have a DataGrid that I will use three different pages. It uses TemplateColumn's (Item, Edit, and Footer Templates). On one page the grid is...



Reply With Quote

