I have a web page (Orders.aspx) that gets some orders and show them in a Gridview . The orders list I get from DB is depend on a field named Status. The page has a master page that contains a Tab user control.
The user control has several tabs and every tab has a different Status.
Therefor, when the user clicks on every tab, I want to pass a value as status to my content page (Orders.aspx) and then select the orders from DB based on status.
How can I do it?
Thank you