User-798590995 posted
I did resolve my problem and it was specific to the RouteConfig.cs solution and how FriendURLs were implemented. Interestingly enough, I saw your answer after
finding out how to resolve it. See below:
My original Routconfig.cs was:
public static void RegisterRoutes(RouteCollection routes)
{
var settings = new FriendlyUrlSettings();
settings.AutoRedirectMode = RedirectMode.Permanent;
routes.EnableFriendlyUrls(settings);
}
I was finally able to get post data using the following instead:
public static void RegisterRoutes(RouteCollection routes)
{
routes.EnableFriendlyUrls();
}