-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
To get the latest build of T4MVC: Go to MvcContrib T4MVC page on CodePlex A few weeks back, we announced (mostly on Twitter) that T4MVC was moving into the MvcContrib Codeplex project. I didn’t say much about it at the time because there Read More......(read more)
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
T4MVC has always struggled with finding the right way of running automatically when you build. Being a T4 template in your project, by default it just runs when you save it. This is not great, because you really want it to rerun whenever you Read More......(read more)
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is there a way to create a strongly typed T4MVC ActionLink with a hash in it?
For example, here is the link I'd like to create:
<a href="/Home/Index#food">Feed me</a>
But there's no extension to the T4MVC object that can do this.
<%= Html.ActionLink("Feed me", T4MVC.Home.Index())…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Last week, I blogged about a nice way of auto-running T4MVC by using the Macro IDE to write an OnBuildBegin event handler . This was a big improvement over the hacky ‘AlwaysKeepTemplateDirty’ flag that we’ve been using since T4MVC’s early days. Read More......(read more)
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have these 2 routes :
routes.MapRoute("Agenda", ConfigurationManager.AppSettings["eventsUrl"] + "/{year}/{month}", MVC.Events.Index(), new { year = DateTime.Now.Year, month = DateTime.Now.Month });
routes.MapRoute("AgendaDetail", ConfigurationManager.AppSettings["eventsUrl"] + "/{year}/{month}/{day}"…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi there,
We have a large existing ASP.NET WebForms application, but we are now moving over to MVC.
Rather than go through a painful process of trying to integrate MVC into the existing app, we're looking at creating a brand new VS project to completely isolate the new code.
As a first step, we…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
If given the choice, which path would you take?
ASP.NET Webforms + ASP.NET AJAX
or
ASP.NET MVC + JavaScript Framework of your Choice
Are there any limitations that ASP.NET Webforms / ASP.NET AJAX has vis-a-vis MVC?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm not clear about this....
When having a gridview on the View, is the controller who has to set up the Data source, columns, etc? or I just have to expose the DataBinding stuff, fire it from the controller and let the html/codebehind on the view handle all the rendering and wiring up?
To be more…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
For a large fillin form I use the asp.net FormView for the magic databinding to my model. In this model I've a property called Rides (shown below), which exposes a list, which I obviously not want to be replaced entirely. So I made it readonly.
However, this way I can't use the databinding features…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm looking for a example or article that demonstrates using SimpleModal in an ASP.NET webforms project.
Ideally the article would show creates and edits of a grid row using simplemodal.
>>> More