show/hide this revision's text 2 modify response

Try

Or, you could try changing the parameter type to stringfirstItem, then convert the string to an interger in the method. I am new to MVC, but I believe you need nullable objects in your parameter list, how else will the controller indicate that no such parameter was provided? So...

public ActionResult ViewNextItem(string id)...

show/hide this revision's text 1

Try changing the parameter to string firstItem, then convert the string to an interger in the method. I am new to MVC, but I believe you need nullable objects in your parameter list, how else will the controller indicate that no such parameter was provided?