how can we send a parameter to HttpGet IActionResult method which is not show in url – Asp.net
public IActionResult Create(String UserID) { //do some action } in view, I am sending parameter with <a href="/ProductRegistration/[email protected]"></a> in this method value is shown in the URL I want to not show in the URL how can we send a…