Is it possible to work with a global variable that need to receive the data from a query string in MVC controller?
public string Layout = Request.QueryString["Layout"];
At the moment I am working with a Session variable - but i want to use a global variable so it will be available all over my controller functions. Thanks