Tagged Questions
T4MVC is a nifty little open source utility for Microsoft Asp.net Mvc. It allows replacing magic strings in Views, Controllers and Links to content with strong names/types.
12
votes
2answers
818 views
Strongly-typed T4MVC Action/ActionLink
I've been using T4MVC (FYI: v2.6.62) for quite some time, and I've been slowly moving over our code to this way of working (less reliance on magic strings).
But I've had to stop because, for some ...
8
votes
2answers
609 views
When will T4MVC support Razor with explicit HtmlHelpers for rendering partials?
I've been using T4MVC for some time now and love the "explicit HtmlHelpers for rendering partials" feature, which by default is switched off. I am using T4MVC version 2.6.40.
I recently upgraded to ...
6
votes
1answer
447 views
ASP.NET MVC3 How to reference views directly from controller
In my controller I want to specify a different View than default.
Like this :
public ActionResult EditSurvey(Int32 id)
{
Survey survey = _entities.Surveys.Single(s => s.Id == id);
...
5
votes
1answer
498 views
Does Visual Studio 2008 Express support t4?
I'm trying to use T4MVC in Visual Web Developer 2008 Express Edition and it's not building any files. Is T4 supported in the express editions?
5
votes
2answers
982 views
Can you do a RunCustomTool with EnvDTE as a pre-build event?
I am using T4MVC, and I can't use a pre-build event to run TextTransform.exe as it relies on EnvDTE, and must be run with Visual Studio as host.
If I have run custom tool once, it works nicely ...
5
votes
3answers
2k views
Cannot get T4MVC to work with VS2010 and ASP.NET MVC 2
I'm trying to add the T4MVC templates to my project, but I'm experiencing some problems. I went to Codeplex and downloaded the latest version of T4MVC, and according to the instructions I just copied ...
4
votes
1answer
225 views
Compile error with T4MVC generated code in a MVC 3 project
We are developing a web application with ASP.Net 4 & MVC 3 Framework. I've installed T4MVC through NuGet and all the Views, Controllers and static content are succesfully generated as strong ...
4
votes
1answer
325 views
RouteValueDictionary in querystring with t4mvc?
Whenever I use t4Mvc to create a form post Url, e.g.
<% using (Html.BeginForm(MVC.Admin.Login.Index())) { %>
It generates a route like the following:
<form method="post" ...
4
votes
2answers
2k views
T4MVC and duplicate controller names in different areas
In my application I have controller named Snippets both in default area (in application root) and in my area called Manage. I use T4MVC and custom routes, like this:
routes.MapRoute(
"Feed",
...
3
votes
1answer
37 views
T4MVC 2.6.65 and UseLowercaseRoutes=true error
Good day!
I'm using latest T4MVC from 2.6.65 from NuGet (upgraded from 2.6.64), I've set
// If true, use lower case tokens in routes for the area, controller and action names
static bool ...
3
votes
2answers
196 views
T4MVC “run custom tool” generates EnvDTO 7.0 vs 8.0 csc warning
I'm getting the following warning when I right click on T4MVC.tt and select "run custom tool" (i.e. rebuild by T4MVC.cs file).
Warning 1
Compiling transformation: Assuming assembly reference ...
3
votes
2answers
332 views
T4MVC @Url.Action(MVC.Controller.Action()) Renders “?Area=” Parameter in QueryString
I am rendering a menu from a Partial Action directly to the layout, using:
@Html.Action(MVC.Menu.Index())
This action, determines which Menu partial to render. For instance, a public menu partial. ...
3
votes
1answer
128 views
No constants generated by T4MVC?
Why no constant strings in T4MVC generated code? My guess would be compilation-time copying of constant values...
But adding constants to the generated code would allow T4MVC generated stuff to be ...
3
votes
2answers
335 views
T4MVC Doesn't work property with Url.Action()
This was my original code:
@Url.Action("LoginYoutube", "Account", new { returnUrl = Request.QueryString["ReturnUrl"] }, "http")
Which would generate: http://localhost:2543/Account/LoginYoutube
...
3
votes
2answers
355 views
Adding a new version of Jquery via Nuget and issues with t4mvc
I've added the latest release of Jquery(1.5.2) via Nuget, but t4mvc refuses to see it.
It doesn't appear in intellisense, and when i type it in manually i get:
CS0117: 'Links.Scripts' does not ...
3
votes
1answer
231 views
T4MVC Use Extension methods in Control Library
I have written a few razor helpers and these helpers use functions that include the extension methods generated by T4MVC.
I now want to move these to a control library so that they can be used across ...
3
votes
1answer
3k views
cannot implicitly convert type void to object. .NET MVC PartialViewResult
I have the following controller action:
[ChildActionOnly]
public virtual PartialViewResult ListActions(int id)
{
var actions = meetingActionRepository.GetAllMeetingActions(id);
...
3
votes
2answers
121 views
Is there an equivalent of T4MVC for webforms?
I use T4MVC inside my asp mvc projects, mostly because it's brilliant. Is there an equivalent for asp webforms?
3
votes
4answers
621 views
Broken Images on IIS7
I have a ASP.NET MVC site and it works just fine when I run it locally. Once I deploy that site to IIS 7 all links to resources are broken (ie. script files, images, css files). Could this be a route ...
3
votes
3answers
486 views
T4MVC Links for SEO
I'm trying to switch our links over to T4MVC, and I'm having a small problem with parameters that aren't part of an action's signature. We have a route that goes something like this:
...
2
votes
1answer
58 views
What is the difference between these 2 definitions in T4Mvc?
In my razor view I have the following:
var url = "@Url.Action(Mvc.Leads.GetAllLeads())"
var url2 = "@Url.Action(Mvc.Leads.Actions.GetAllLeads())"
They both appear to generate the same Url. ...
2
votes
2answers
63 views
using T4MVC in a JS function
Take the following script. Notice the string '/Home/Index'. Using T4MVC, is there a way to specify this to get rid of the magic string?
<script type="text/javascript">
...
2
votes
1answer
45 views
Is AddTimestampToStaticLinks slow?
T4MVC has a setting AddTimestampToStaticLinks which adds to the url file's last change time:
/Content/nerd.jpg?2009-09-04T12:25:48
It is very convenient during development as files which are ...
2
votes
1answer
359 views
How can I add a hash fragment to T4MVC route dictionary ActionResult?
I have an extension method that returns an ActionResult (simplified for demonstration purposes):
public static ActionResult GetTestActionResult(this HtmlHelper htmlHelper, int productId)
{
return ...
2
votes
1answer
134 views
custom model binder with T4MVC
I have a custom model binder in my MVC app but I don't know hos I can use T4MVC with it.
Usualy I would Call my action this way :
return RedirectToAction("Edit", "Version", new {contractId = ...
2
votes
1answer
187 views
Why does T4MVC try to run controller actions from Html.ActionLink?
In my controllers I pass in a IUnitOfWork object (which is generated from IoC) which is then used in controller actions for database functionality (the IUnitOfWork is passed to my service layer).
...
2
votes
1answer
122 views
Using T4MVC with build script
Has anyone gotten T4MVC to run as part of a build script ? Preferably a NAnt build script.
I'd like to not have to check in the generated files and just have the build server create them as part of ...
2
votes
1answer
125 views
T4MVC: Areas name in URL is not lowercase
Good day!
I've the following link:
<%: Url.Action(MVC.Areas.Manage.Feedback.Index()) %>
And it is generated as /Manage/feedback. Action and controller names are in lowercase, but area name ...
2
votes
1answer
422 views
razor syntax with errors compiles when it should not compile
So I an into an error at runtime with my asp.net mvc3 app, when I checked the code I see that it has a red line on it, the error list says there is no such function defined but it will still compile ...
2
votes
1answer
179 views
T4MVC does not support DisplayTemplates and EditorTemplates
I've noticed this when I used the following in my view:
<% Html.RenderPartial(MVC.Shared.Views.EditorTemplates.ClientOnDocuments); %>
The line above returns just the name of the view, so in ...
2
votes
2answers
440 views
Refactoring a form in MVC2
I find myself pasting this code over and over on many views that deal with forms.
Is there a simple approach to refactor the following markup from a view in MVC2?
The only changing part is the route ...
2
votes
1answer
228 views
How do I test rendered views when using T4MVC with TestHelper?
How do I test which view was rendered from a controller action if what I get is a T4MVC_ActionResult? Under normal circumstances I should be able to directly use TestHelper's methods, like in the ...
2
votes
1answer
705 views
Using T4MVC in real project
T4MVC is cool, but I have a couple of issues integrating it in my project, any help is really appriciated:
I've got such warnings for all my actions (I use SnippetsBaseController as base class for ...
2
votes
1answer
474 views
T4MVC not generating an action
I suspected there was some hidden magic somewhere that stopped what looks like actual method calls all over the place in T4MVC. Then I had a view fail to compile, and the stackTrace went into my ...
1
vote
1answer
55 views
T4MVC Actions token
Actions token was removed from T4MVC. So do I understand right there is no short syntax for referencing Action inside the same Controller?
1
vote
1answer
81 views
T4MVC urls in javascript: substitute route values
I do like using T4MVC and its strongly-typed URL's, and want to use them in JS, but have some problems.
Let's say I want to load an url into a div:
$('#mydiv').load("@Url.Action(MVC.Home.Index())"); ...
1
vote
1answer
73 views
How do I get HTML.Partial to use T4MVC constants?
I've started using T4MVC and I'm trying to figure out how use T4MVC with PartialViews.
I currently have
@Html.Partial("LocationGrid", Model.Locations)
I would like to use
...
1
vote
2answers
51 views
T4MVC and testing with MvcContrib.TestHelpers issues with static linked content
I'm trying to write some tests around some code previously written before I start mucking with it. I'm running into issues where the controller method references some of the static variables that ...
1
vote
0answers
71 views
T4MVC and testing with MvcContrib.TestHelpers getting 'The relative virtual path' errors
My issues my be due to my n00bness in the MVC land, but I'm trying to write a test for a function in a controller that was generated with T4MVC. So I thought I'd use the MvcContrib.TestHelper as ...
1
vote
1answer
34 views
View Not being rendered on installation of T4MVC
I have an ASP.NET MVC 3 web application. I recently installed T4MVC templates by using the package manager:
Tools -> Library Package Manager -> Package Manager Console
PM> install-package ...
1
vote
1answer
118 views
t4mvc : Cannot inherit a controller class which has no default constructor?
I am using T4MVC with MVC2.
I have the following building blocks:
A simple entity interface which defines that every POCO entity must have a long Id property:
public interface IEntity
{
public ...
1
vote
1answer
182 views
T4MVC handling minified js and css files generated with Chirpy
I am using T4MVC and the Chirpy plugin in an ASP.Net MVC 3 website and I am loving both of them. Only T4MVC can't seem to handle the minified js files generated with Chirpy and .yui.js javascript ...
1
vote
1answer
156 views
T4MVC not generating some Actions for one Controller
I have a situation where T4MVC is generating everything properly (meaning intellisense shows all areas/controllers/actions and everything compiles), but when I run the code, I get a T4MVC was called ...
1
vote
1answer
57 views
T4MVC with ActionNames
I just included T4MVC in my project and ran into an issue. I'm passing data to my javascript via hidden text fields and I need to be able to pass the names of controllers and their actions. Here's ...
1
vote
3answers
182 views
T4MVC - Dealing with optional parameters
I'm using .NET 3.5, MVC 2 and T4MVC 2.6.42...
I have the following action:
public virtual ActionResult Index(string id, int page = 1)
And the following route:
routes.MapRoute(
"Products", // ...
1
vote
1answer
55 views
T4MVC 2.6.44 missing T4MVC.settings.t4 file
I downloaded the latest version of T4MVC 2.6.44 from http://mvccontrib.codeplex.com/releases/view/41582. When I unzipped the file, it has T4MVC.tt and T4MVC.cs. And I don't see T4MVC.settings.t4. I ...
1
vote
1answer
426 views
T4MVC AsyncController
I've recently installed T4MVC using Nuget. I had an old version before this that worked fine, however I had a new requirement that needed an asynchronous controller. After creating the asynchronous ...
1
vote
2answers
124 views
T4MVC throws TypeInitializationException during Unit Test — how do I fix this?
I am adding unit testing to the NerdDinner solution, and ran across this. I am testing the Edit POST method, given here:
[AcceptVerbs(HttpVerbs.Post), Authorize]
public virtual ActionResult ...
1
vote
2answers
410 views
Problem with IEnumerable in View
I have a view that enumerates over a model.
Outside of the grid that enumerates over the model, I want to have a create link that accepts a parameter of MeetingActionId, that will bind the ...
1
vote
1answer
360 views
T4MVC Html.ActionLink or Html.RouteLink - how to add target
I have a working Html.RouteLink that I want to convert to T4MVC.
The working RouteLink code is as follows:
<%= Html.RouteLink(vaultViewItem.NameDisplay,
new {controller = ...