I have a fairly simple scenarioI have an action method in my controller with syntax like that\[code\][HttpPost] public ActionResult Consignment(string txtConsNo, string isReferenceTracking) {}\[/code\]Not in a page I need to create an hyperlink in application which needs to access this action method. I am using HTML.ActionLink method to create hyperlink like this\[code\] @Html.ActionLink((string)item.RDC_CONSNO, "Consignment", "Tracking", new { txtConsNo = (string)item.RDC_CONSNO, rdbConsNo = "" }, null)\[/code\]But it creates the link like this\[code\]http://localhost:3412/Tracking/Consignment?txtConsNo=100245506\[/code\]How should I go around this?Thanks