C#C
C#3y ago
Opcode

❔ post req controller

[HttpPost]
public IActionResult StockData(string stockTicker){
_logger.LogInformation("StockData action invoked with stockTicker: {StockTicker}", stockTicker);

return View("Privacy");
}

no errors but the url doesn't change when return View happens
Was this page helpful?