0
votes
2answers
61 views
When is the MasterPageFile located in ASP.NET MVC WebForms ViewEngine
When is the MasterPageFile property of a view/page checked that it exists in ASP.NET MVC WebForms view engine?
What I want to do is have the following code not output the error:
Parser Error …
5
votes
5answers
124 views
What are the benefits of using an alternate view engine?
I am playing with ASP.NET MVC and I see that there are a few alternate view engines available for it such as NHaml and Spark. My question is why would you use an alternate view engine? I don't see a …
1
vote
1answer
69 views
ASP.NET MVC Custom View Engine Not Being Called.
I am attempting to impliment a custom view engine to serve mobile views based on the user agent. I am following Scott Hanselman's approach from this blog post.
I have inherited from the …
1
vote
1answer
63 views
How to use MVC Action Results from regular web forms (faking ControllerContext)?
We have a pluggable framework that returns ActionResult objects that render things to a browser. One late breaking requirement is that our plugins should be callable from a regular ASP.NET Web Forms …
9
votes
2answers
582 views
ASP.NET MVC View Engine Comparison
EDIT: added a community wiki to begin capturing people's experience with various View Engines. Please respectfully add any experiences you've had.
I've been searching on SO & Google for a …
3
votes
3answers
100 views
Is it possible with ASP.NET MVC to render a view from a template pulled from a database?
What I'm trying to do is generate email content using different templates.
I think ASP.NET MVC could be a good fit for this. My controller would get the necessary data for the email and decide …
0
votes
1answer
29 views
Where has ViewEngines.DefaultEngine gone an asp.net MVC?
I was recently trying to get the default view engine in ASP.NET MVC 1.0 and couldn't seem to access the ViewEngines.DefaultEngine property that used to be available in the CTP and Beta versions. Does …
2
votes
1answer
51 views
How to group partial shared views for specified controllers?
Is it possible to tell ViewEngine to look for partial shared views in additional folders for specified controllers (while NOT for others)?
I'm using WebFormViewEngine.
This is how my …
11
votes
3answers
325 views
What are the benefits of using an alternate ASP.NET MVC view engine?
I have looked at the usual suspects...Spark, NHaml, etc. They all seem to be syntactic sugar for those that are uncomfortable with the <% %> syntax. Are there any other tangible benefits? …
1
vote
3answers
433 views
ASP.NET (MVC) - render page to a file
Hello,
I have to create a bunch of static html files as console / winform job. The current solution uses a string builder. Having used ASP.NET-MVC with strongly typed view pages …
1
vote
2answers
437 views
How to change default view location scheme in ASP.NET MVC?
I want to change view locations at runtime based on current UI culture. How can I achieve this with default Web Form view engine?
Basically I want to know how implement with WebFromViewEngine …
0
votes
1answer
242 views
MasterPage/ContentPage with NVelocity and ASP.NET MVC?
I am a big fan of NVelocity. I think its terse syntax is a huge boon, and helps keep my views simple and effective. I have begun using the NVelocity view engine from the Mvc Contrib project for …
0
votes
3answers
203 views
Calling another controller action after the current controller action has finished executing
What I am trying to achieve:
After each view has finished executing I would like to make a separate http call to an external partner.
I need to pass one of the view's content as body of that http …
1
vote
1answer
54 views
Find the atrributes on an action from the ViewEngine in ASP.NET MVC
I've got a custom ViewEngine and I want to modify the master page used depending on if the requested action has an Authorize attribute filter.
So far I'm just using reflection like this:
var method …
1
vote
2answers
48 views
What is the most usual way to develop views in asp.net mvc?
What is the most usual way to develop views in asp.net mvc? Should I be using a view engine other than the default? As far as I know, StackOverflow is the bigger site using ASP.NET MVC, so, what they …
