mvc no codebehind strongly typed viewdata headers not working - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T00:22:19Zhttp://stackoverflow.com/feeds/question/615044http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/615044/mvc-no-codebehind-strongly-typed-viewdata-headers-not-working3mvc no codebehind strongly typed viewdata headers not working Ayo2009-03-05T14:40:57Z2009-04-01T21:15:01Z
<p>I add that to my header <code><%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %></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<app.Models.tTable></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#6152583Answer by Ayo for mvc no codebehind strongly typed viewdata headers not working Ayo2009-03-05T15:27:45Z2009-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><pages></code> node in the web.config file in your "/Views" directory with </p>
<pre><code><!--
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.
-->
<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">
<controls>
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls>
</pages>
</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#7073573Answer by Mouffette for mvc no codebehind strongly typed viewdata headers not working Mouffette2009-04-01T21:15:01Z2009-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>