I downloaded your project and the problem is in the following code:
[AcceptVerbs(HttpVerbs.Post)] public ActionResult About2([Bind(Prefix = "SomePropertyToBind")] String modelString) {
using this attribute [AcceptVerbs(HttpVerbs.Post)] , this is not a problem, you cannot open your desired page without using GET for your request.
Of course, deleting this attribute worked fine, but if you need to reserve it, add another action with the same name to send a GET request to your page as follows:
public ActionResult About2() {
What is it. Feel free to ask if it still works, thanks.
source share