It seems that once I define my Form like -->
using (Html.BeginForm("Create", "MyController", FormMethod.Post, new { id = "myForm" }))
The additional parameters being passed are now null.
MyController/Create/4?pid=61&status=Initiated
pid and status returns null although the parameters are being passed as above. What is causing these querystring parameters to be be null?
Using Request["myparameter"] or simply getting value from action method parameter returns null.