I have a controller with an action method as follows:
public class InventoryController : Controller { public ActionResult ViewStockNext(int firstItem)
or do it with Route Attribute:
public class InventoryController : Controller { [Route("whatever/{firstItem}")] public ActionResult ViewStockNext(int firstItem) { int yourNewVariable = firstItem; // ... } }