This is the code that builds the Listview, after the data is updated in a lter page I use a response.redirect to get me back to this page.
I'm new to asp.net 3.5 so any help would be appreciated.
Malcolm
<asp:SqlDataSource ID="SqlDataSource3" runat="server"
DataSourceMode="DataSet"
EnableCaching="true"
FilterExpression="IDMID = '{0}' and status ='{1}'"
ConnectionString="<%$ ConnectionStrings:Consumer
FROM dbo.Tbl_Status INNER JOIN dbo.Tbl_Consumer ON dbo.Tbl_Status.ConsID = dbo.Tbl_Consumer.ConsID
ORDER By ConsID DESC;">
<FilterParameters>
<asp:ControlParameter
Name="IDM"
ControlID="Dropdownlist1"
PropertyName="Selectedvalu
<asp:ControlParameter
Name="Status"
ControlID="DropDownlist3"
PropertyName="SelectedValu
</FilterParameters>
</asp:SqlDataSource>
<asp:ListView ID="ListView1" runat="server" DataKeyNames="ConsID"
DataSourceID="SqlDataSourc
<ItemTemplate>
Main Topics
Browse All Topics





by: samtran0331Posted on 2009-05-22 at 04:54:26ID: 24449840
>>the data is updated by a page further in the application
So when that page updates the data, how do you return to the page with the ListView?
Are you storing that dataset in session?