Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
3k views

ASP.NET MVC 3, Razor Views, and Portable Areas

I am trying to using portable views with ASP.NET MVC 3 and razor views as that seems like the best way to create an easy plug-in architecture. So I have my class library setup and I have my view ...
5
votes
1answer
315 views

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

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 ...
4
votes
2answers
410 views

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 ...
3
votes
2answers
530 views

Why aren't ASP.Net MVC Portable Areas Thriving Like Rails Plugins?

I love the idea of the Portable Areas in MvcContrib. After reading up on it, and building a couple for practice, I was surprised not to find a plethora of open source projects leveraging this neat ...
2
votes
1answer
338 views

asp.net mvc 3 razor sections and portable areas

Is it possible to have a portable area feed into a ASP.Net MVC 3 razor section? I have a section in my for placing JS files, CSS, fiels, etc. I want to be able to target the head section from ...
2
votes
0answers
100 views

Is there a way to load multiple versions of a given portable area or different versions of area dependencies within a ASP.Net WebSite

I'm trying to satisfy a couple of requirements I have while building an ASP.NET MVC Website. I've managed to follow the numerous portable area tutorials on the net to allow for drag and drop of a DLL ...
2
votes
1answer
274 views

Compile MvcContrib Portable Area with aspnet_compiler

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 ...
1
vote
1answer
112 views

MVC 3.0 Portable Areas

Are the Portable Areas Supported in MVC 3 ? I have come across "MVC-contrib" is it a HACK ?
1
vote
0answers
152 views

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 ...
1
vote
1answer
608 views

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 ...
0
votes
0answers
86 views

Can ASP.NET MVC Portable Areas Correctly Resolve Server.MapPath?

I have an ASP.NET MVC 3 app that is using PortableAreas (don't ask me why - I don't know). I have a need to map from an area's url to the actual folder on the system. Here's my actual folder ...
0
votes
1answer
97 views

MvcContrib Portable Areas - Multiple Instances

I have added dynamic database mapping in a project I am working on, as explained here. But I am also attempting to make this project like a plug-in by integrating portable areas into the project. So ...
0
votes
1answer
65 views

Injecting a class that is in other assembly using ninject

My project is done using portable areas, I’m using ninject for DI, I’m injecting a class that is in other assembly, so I have this code in the areaRegistraction: ...
0
votes
0answers
87 views

Bind handlet to FormsAuthentication_OnAuthenticate outside of Global.asax

I'm having some trouble finding a way to do this. What I'm trying to do is implement an MVC3 Portable Area to handle user authentication\logins. I'd like to keep this as a NuGet package to mimize the ...
0
votes
1answer
202 views

MVC Contrib Portable areas and static content

I have followed a couple of guides on how to serve static content from a portable area but with no luck. I have two projects, a web project and a class library (which serves as my portable area). In ...
0
votes
2answers
458 views

ASP.NET MVC 3 - Portable Area View doesn't find my model

I've started using MvcContrib's Portable Areas and everything works fine for the very simple views, but when I want to use a custom model in my view i get the error saying the namespace doesn't exist. ...
0
votes
0answers
95 views

applying security with roles into a portable area

I'm using MvcContrib's portable area (see here) approach for making an application reusable. I need to be able to inject an Enum of roles from the parent app into the portable area. I use an Enum ...
0
votes
0answers
61 views

Implementing nested portable areas

I have some class library that i would use it as an portable area, and it is named "MyMoudle". I have another class library which is a portable area it self (named "MyApp"), and also references the ...
0
votes
1answer
478 views

MVCContrib portable areas not working from HtmlExtensions, MVC 3

I just implemented MVCContrib's Portable Area feature and it works fine. I can open it using: http://localhost/projectname/portableAreaName, but this portable area is not working if i render it using ...
0
votes
1answer
229 views

Different View Engine for Portable Area

I'm using ASP.NET MVC 2 and MvcContrib 2 portable areas. The consuming application is leveraging a CustomWebFormViewEngine which is derived from the standard WebForm view engine. I want the portable ...
0
votes
1answer
584 views

Can't acces my Portable Area in MVCContrib MVC2

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 ...
0
votes
2answers
210 views

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 ...