tags:

views:

37

answers:

1

Hi All,

I am binding Model to the view and its working fine when populating the view but on post back its not sending any data to controllers

  [AcceptVerbs(HttpVerbs.Post)]
        public ActionResult InfoNext(MyModel ModelDep)
        {

In the aspx view i am binding properly

<%@ Page Title="Information" Language="C#" MasterPageFile="~/Views/Shared/Some.Master"
    Inherits="System.Web.Mvc.ViewPage<MyModel>" %>

Issue is ModelDep is not having any updated values from View

+2  A: 

I'm guessing:

Inherits="System.Web.Mvc.ViewPage<MyModels>"

should be:

Inherits="System.Web.Mvc.ViewPage<MyModel>"
John Rasch