There is an ASP.NET MVC 5 application. There are a number of controllers. So, I need to make a series of repetitive actions for each controller. How?
I am sure that they will ask for specifics (although I am not sure that this is necessary), so I’ll tell you about the actions.
If the user requested the following URL: http://my.app/Controller/Page/?qwe=asd , then certain variables (not all, but in this case, qwe exactly) should be written in cookies, and then the redirect should go to the URL: http://my.app/Controller/Page
How to do it?