views:

10

answers:

0

I'm currently modifying a web application (ASP.NET and C#) of mine. Before, the user searched for an account in a seperate page, then opened up the details of the user in another page using a QueryString.

Now, I'm requested to make it all one page. So the initial searching page is gone, and the textbox is placed at the top of the main details page.

I have no issue displaying customer data at first, however when I search for another account afterwards, the multiviews seems to stick with what data they displayed at first.

So for example, if I search for the account '0001' and click the multiview tabs (I'm using a menu element for the tabs), all the relevant data shows up. But if I then search for another account, the data inside the multiviews seem to reflect the first search rather than the new search.

The parameter for the data sources is a hiddenfield, which updates with the primary key of the account everytime something is searched.

Thanks