1
vote
1answer
45 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 regula …
0
votes
1answer
30 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 fr …
6
votes
2answers
360 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 & …
0
votes
1answer
25 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 …
3
votes
3answers
90 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 …
2
votes
1answer
44 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 …
11
votes
3answers
309 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 tangib …
1
vote
1answer
46 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 lik …
1
vote
2answers
44 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 …
1
vote
3answers
384 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
373 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 WebFr …
0
votes
1answer
213 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 Contri …
3
votes
3answers
616 views
alternative asp.net MVC view engines
I was wondering if there was a general consensus on the "best" alternative view engine for asp.net MVC. So far I know of Spark, Brail, NHaml but what about others?
0
votes
4answers
105 views
Writing a TemplateLanguage/VewEngine
Aside from getting any real work done, I have an itch. My itch is to write a view engine that closely mimics a template system from another language (Template Toolkit/Perl). This i …
0
votes
2answers
283 views
Extending WebFormView in MVC
Howdy,
I want to extend the WebFormViewEngine so that I can perform some post-processing - I want it to do it's stuff, then hand me the Html back, so I can do put some final touch …
