1
vote
1answer
43 views

Troubles binding when using non sequential indices and having multiple custom type parameters in method

Say I am posting back this form: <form action="/Admin/SaveTestChanges" method="post"> <input name="index" type="hidden" value="S1"/> <input name="[S1].SID" ...
0
votes
3answers
493 views

ASP.NET MVC - JsonConvert.DeserializeObject to Html.DropDownList

I'm trying to read some data in as Json, deserialize it, and display it in my view in a DropDownList. The data looks like this: { "products": [ { "body_html": "<p> ....</p>", ...
0
votes
1answer
340 views

MVC3 routing with period in .NET 4.5 / VS2012

A route I had working in VS2010/.NET 4/MVC3 seems broken in VS2012 and .NET 4.5 (although with MVC3 still). Previously I had a route like this:- routes.MapRoute("TMS", ...
7
votes
1answer
5k views

MVC 3 System.Web.Optimization Bundles single file

In MVC3 C# I'm trying the new System.Web.Optimization Bundles JSminify & CssMinify package (part of the .NET 4.5 framework). I have one main Bundle. On one page in my website, I wish to include a ...