I am designing a Job Portal. I have Master Page and in Master Page, I have used a Select Country Dropdown List.
I am displaying jobs based on user selected country in all content pages.
I just want that a user only selects one time a country and it remain selected through out all content pages. I don't want him select again and again on every content page.
I just want to persist the dropdown selected value through out the navigating in website unless user changes it again.
You can use a Session to store the value of the DropDownList
Code behind, set the correct value of the dropdown on every page load. And you can now use the value of
Session["language"]
to filter your data.