portable-areas

MVC Portable Areas not working with Typed views

When using MvcContrib Portable Areas I can't get the strongly typed views to work. I get the error message 'Could not load typeSystem.Web.Mvc.ViewPage<blah> I've tried with built in types to check if it's an error with my type. ...

Compile MvcContrib Portable Area with aspnet_compiler

Hi I have a .net mvc 2 web application. I deployed this application using aspnet_compiler and a nant build file like <target name="deploy.advance.application"> <exec program="${aspnet.compiler}" commandline='-f -u -c -p ${dir.website.advance.application} -v temp ${dir.publish.advance.application}' /> <mkdir dir="${dir.pub...

Do ASP.Net MVC Portable areas work with Umbraco?

I have an Umbraco website that I want to extend. I feel that ASP.Net MVC is the way to go for the extension I'm writing - I particularly like the idea of a Portable Area from MVCContrib. What I'm wondering is, how straightforward would it be to incorporate the Portable Area into Umbraco without recompiling the source? More generally, is...

Complicated Module Based Create new Record in DB with ASP.NET MVC 2

Hi, i have a very tough problem for me to solve, and i thought and searched alot and came down t one conclusion which i will mention down. the problem is i have a client that wants to create a websites based on a Common functionality, so let us call it Modules, so what i thought is to use MVC Contrib Portable Areas, which are great ideas...

Can't acces my Portable Area in MVCContrib MVC2

Hi, I need help. I can't access my portable area from my main project. I build everything and I get a 404 error when trying to access this portable area (localhost:123/IW/Home), but all my regular areas are working fine (ex: localhost:123/Portal/Home) Here's what I did in order to install my portable area -I downloaded MVCContrib -I add...

Sharing MasterPages and styles/other media between ASP.NET MVC sites, using MVCContrib PortableAreas

Any way to have a Portable Area containing resources common to several MVC applications (when added as a reference to the project depending on it)? Wanting to have a 'Core' set of pages, styles, masterpages, javascript etc, but not found an easy way to do this. Tried a few things to reference the master page, but not had any luck. The f...

Html.EditorFor in an MVCContrib PortableArea

I am trying to use Html.EditorFor in a Portable Area (i.e. so create and edit use the same form), but it doesn't seem to working (fine when it is not in the Portable Area though). In the page, I just have: <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MySite.Models.DocumentType>" %>...

MVCContrib PortableAreas can we override views in clients?

I have two mvc applications: say, apartment rental and boat rental. These are the "clients." I have an MVC contrib portable area project that contains our log in system. This is the "server." The UX designers insist that we need to have different markup on "forgot my password" for the apartment site. So one "client" will use the def...

Compile views with enabling MvcBuildViews into MVC 2 Portable Area

I have a big .net mvc 2 project where we are using MvcContrib Portable Area. There is a main web site which load many modules (PA modules). The main application contains Site.Mater into its ~\Views\Shared folder. each module also has own Site.Master which inherit from that main one. At the moment we are using something like: <%@ Maste...