For example:
I have a page (http://examplesite/Pages/MyTeamPage.aspx) with two lists added as web parts.
1.Invoices
2.Tasks
I want to show different folders of each list.
Invoices - /Lists/Invoice/2012
Tasks - /Lists/Tasks/RedTeam
When I specify the RootFolder as a querystring I observe following behaviour
http://examplesite/Pages/MyTeamPage.aspx?RootFolder=/Lists/Invoices/2012
1.It shows only the content in folder 2012 in Invoices list
2.It shows all content in all folders in Tasks list including folders
http://examplesite/Pages/MyTeamPage.aspx?RootFolder=/Lists/Tasks/RedTeam
1.It shows only the content in folder RedTeam in Tasks list 2.It shows all content in all folders in Invoices list including folders
What I want to do is to have the MyTeamPage.aspx to show;
1.Only the content in folder 2012 in Invoices list
2.Only the content in folder RedTeam in Tasks list
How can this be achieved?