mvc no codebehind strongly typed viewdata headers not working - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T09:32:14Z http://stackoverflow.com/feeds/question/615044 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/615044/mvc-no-codebehind-strongly-typed-viewdata-headers-not-working 4 mvc no codebehind strongly typed viewdata headers not working Ayo http://stackoverflow.com/users/24130 2009-03-05T14:40:57Z 2009-04-01T21:15:01Z <p>I add that to my header <code>&lt;%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %&gt;</code> and am able to access ViewData and all its internals as well as all the mvc objects like url and html. As soon as I add "<code>System.Web.Mvc.ViewPage&lt;app.Models.tTable&gt;</code>" I have no access to any mvc classes and helper methods. I am confused on why this is. I have done an upgrade from mvc preview 5 to rc1 recently but my transition to rc1 was flawless without any errors or bugs.</p> http://stackoverflow.com/questions/615044/mvc-no-codebehind-strongly-typed-viewdata-headers-not-working/615258#615258 4 Answer by Ayo for mvc no codebehind strongly typed viewdata headers not working Ayo http://stackoverflow.com/users/24130 2009-03-05T15:27:45Z 2009-03-05T15:27:45Z <p>After fishing (alot of fishing) around I found the answer, this is because I didn't read the official release notes rather ran through a tutorial from a blog but anywho to get this working you need to replace the <code>&lt;pages&gt;</code> node in the web.config file in your "/Views" directory with </p> <pre><code>&lt;!-- Enabling request validation in view pages would cause validation to occur after the input has already been processed by the controller. By default MVC performs request validation before a controller processes the input. To change this behavior apply the ValidateInputAttribute to a controller or action. --&gt; &lt;pages validateRequest="false" pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;controls&gt; &lt;add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" /&gt; &lt;/controls&gt; &lt;/pages&gt; </code></pre> <p>I added the commenting from a pre built web.config file</p> http://stackoverflow.com/questions/615044/mvc-no-codebehind-strongly-typed-viewdata-headers-not-working/707357#707357 3 Answer by Mouffette for mvc no codebehind strongly typed viewdata headers not working Mouffette http://stackoverflow.com/users/84825 2009-04-01T21:15:01Z 2009-04-01T21:15:01Z <p>There's a trick. There's a web.config under the /Views folder. Wow, I didn't see that.</p> <p>Thanks for posting</p>