As you know, ASP.net MVC Preview 5 is on the streets.
Busy using Preview 3 to produce awesome web applications, I missed the upgrade to Preview 4.
I am upgrading two big MVC application built on Preview 3. Here are the issues I found:
Busy using Preview 3 to produce awesome web applications, I missed the upgrade to Preview 4.
I am upgrading two big MVC application built on Preview 3. Here are the issues I found:
Html.ActionLink() Behavior Changed
Html.ActionLink("Title", "Action", "Controller", new { id = this.ObjectID } );- On This ActionLink and Preview5 Forum Post I found a Solution
- The fix is to change this:
to this:
Html.ActionLink("Title", "Action", "Controller", new { id = this.ObjectID }, null );
Html.Hidden() Behavior Changed
- On this MVC UI Helper Article I thought I found a Solution, but no such luck
- My fix was to change this:
Html.Hidden("ReviewId", this.ID.ToString());
No comments:
Post a Comment