I do not know how to correctly explain the essence of this.
for example:
public class HomeController: Controller { public IActionResult Index() { return View(); } public IActionResult Test() { return View(); } }
I can call http://blabla.gg/home/test
those. make calls using a predefined method. But I want to make arbitrary calls and process them.
In general, I want to call pages with parameters wrong:
http://blabla.gg/home/test?ff=10
that's how