<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>mvccontrib Work Item Rss Feed</title><link>http://www.codeplex.com/mvccontrib/WorkItem/List.aspx</link><description>mvccontrib Work Item Rss Description</description><item><title>Created Unassigned: MVCContrib IncludeCombiner issue with load balancer [7224]</title><link>http://mvccontrib.codeplex.com/workitem/7224</link><description>Hi&lt;br /&gt;&lt;br /&gt;MVCContrib includecombiner gives an javascript error on loadbalancer environment. Unique key generated for JS&amp;#47;CSS resources which may not found when request it goes to other server.&lt;br /&gt;&lt;br /&gt;is there any solution to this issue &amp;#63;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Tejas&lt;br /&gt;</description><author>trivedi_tejas24</author><pubDate>Thu, 16 May 2013 12:49:41 GMT</pubDate><guid isPermaLink="false">Created Unassigned: MVCContrib IncludeCombiner issue with load balancer [7224] 20130516124941P</guid></item><item><title>Created Unassigned: Pagination [7223]</title><link>http://mvccontrib.codeplex.com/workitem/7223</link><description>Please add the ability to add an additional CSS class name or other identifier so that if you wish to have a top and bottom pager they may be easily identified.&lt;br /&gt;</description><author>cdkisa</author><pubDate>Fri, 10 May 2013 04:42:07 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Pagination [7223] 20130510044207A</guid></item><item><title>Created Unassigned: I wish to see EditorFor functions that return ActionResult as a controller extension [7222]</title><link>http://mvccontrib.codeplex.com/workitem/7222</link><description>&amp;#91;Here&amp;#93;&amp;#40;http&amp;#58;&amp;#47;&amp;#47;stackoverflow.com&amp;#47;a&amp;#47;4628536&amp;#47;75500&amp;#41; is what I mean&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;public class CustomControllerBase &amp;#58; Controller&lt;br /&gt;&amp;#123;&lt;br /&gt;  public PartialViewResult EditorFor&amp;#40;object model&amp;#41;&lt;br /&gt;  &amp;#123;&lt;br /&gt;    return PartialView&amp;#40;&amp;#34;EditorTemplates&amp;#47;&amp;#34; &amp;#43; model.GetType&amp;#40;&amp;#41;.Name, model&amp;#41;&amp;#59;&lt;br /&gt;  &amp;#125;&lt;br /&gt;&lt;br /&gt;  public PartialViewResult DisplayFor&amp;#40;object model&amp;#41;&lt;br /&gt;  &amp;#123;&lt;br /&gt;    return PartialView&amp;#40;&amp;#34;DisplayTemplates&amp;#47;&amp;#34; &amp;#43; model.GetType&amp;#40;&amp;#41;.Name, model&amp;#41;&amp;#59;&lt;br /&gt;  &amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47;Have the controller &amp;#40;called, say, MyController&amp;#41; inherit from CustomControllerBase, and then&amp;#58;&lt;br /&gt;&lt;br /&gt;public ActionResult MyAction&amp;#40;int id&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;  return EditorFor&amp;#40;new MyViewModel&amp;#40;id&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;</description><author>weitzhandler</author><pubDate>Thu, 02 May 2013 00:40:28 GMT</pubDate><guid isPermaLink="false">Created Unassigned: I wish to see EditorFor functions that return ActionResult as a controller extension [7222] 20130502124028A</guid></item><item><title>Edited Issue: EmbeddedResourceController functionality broken with IISExpress8 / VS2012 [7221]</title><link>http://mvccontrib.codeplex.com/workitem/7221</link><description>Config&amp;#58;  VS2012, MVC3, IISExpress8&lt;br /&gt;&lt;br /&gt;Problem&amp;#58;  &lt;br /&gt;&lt;br /&gt;Followed instructions on this blog post to install MvcContrib and create a Portable Area&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;elegantcode.com&amp;#47;2012&amp;#47;04&amp;#47;06&amp;#47;mvc-portable-areas&amp;#47;&lt;br /&gt;&lt;br /&gt;The Controllers&amp;#47;Views were working, but loading of scripts&amp;#47;css&amp;#47;imgs was broken.  &lt;br /&gt;&lt;br /&gt;What I did to figure things out&amp;#58;&lt;br /&gt;&lt;br /&gt;Troubleshooting revealed that IIS8 was returning a basic 404 error message and that the module being executed was the StaticFile module, not the MvcRouting module.  Further experimentation showed that the problem was occurring because my URLs looked like this&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;server&amp;#58;1234&amp;#47;AreaName&amp;#47;Content&amp;#47;Site.css&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;And my route was set up like this&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;            context.MapRoute&amp;#40;&lt;br /&gt;                AreaName &amp;#43; &amp;#34;_content&amp;#34;,&lt;br /&gt;                base.AreaRoutePrefix &amp;#43; &amp;#34;&amp;#47;Content&amp;#47;&amp;#123;&amp;#42;resourceName&amp;#125;&amp;#34;,&lt;br /&gt;                new &amp;#123; controller &amp;#61; &amp;#34;EmbeddedResource&amp;#34;, action &amp;#61; &amp;#34;Index&amp;#34;, resourcePath &amp;#61; &amp;#34;Content&amp;#34; &amp;#125;,&lt;br /&gt;                new&amp;#91;&amp;#93; &amp;#123; &amp;#34;MvcContrib.PortableAreas&amp;#34; &amp;#125;&lt;br /&gt;            &amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;It was the period &amp;#40;&amp;#34;.&amp;#34;&amp;#41; in the filename that was causing the route to be bypassed.  I verified this by creating a file with no period, which resulted in EmbeddedResourceManager failing in a different way because it couldn&amp;#39;t determine the MIME type of the file &amp;#40;a different issue altogether&amp;#41;&lt;br /&gt;&lt;br /&gt;What fixed it for me&amp;#58;&lt;br /&gt;&lt;br /&gt;The problem and solution are discussed here&amp;#58;&lt;br /&gt;&amp;#91;http&amp;#58;&amp;#47;&amp;#47;aspnetwebstack.codeplex.com&amp;#47;workitem&amp;#47;226&amp;#93;&lt;br /&gt;&lt;br /&gt;I used the web.config mod mentioned in that posting and my problem disappeared.&lt;br /&gt;&lt;br /&gt;Additional Concerns&amp;#58;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m very surprised that I spent an entire day debugging a problem with EmbeddedResourceController in which the basic functionality enabled by that feature is broken with the &amp;#34;out of the box&amp;#34; config that VS2012 uses with IIS Express 8 and there are no issues reported here related to it at all.  &lt;br /&gt;&lt;br /&gt;It makes me worry that I&amp;#39;m using MvcContrib when I shouldn&amp;#39;t be, or that I&amp;#39;m using it in some non-standard way.  Can someone confirm for me that using MvcContrib with VS2012 &amp;#47; IISExpress8 is not an obsolete or deprecated configuration, and that the issue I describe above really is an issue for someone besides just me&amp;#63;&lt;br /&gt;&lt;br /&gt;Posts like this one don&amp;#39;t give me much confidence, or much guidance, as all it says is that &amp;#34;Nuget allows us to package the views, css, and javascript files into a nuget package as the method for distributing Portable Areas now.&amp;#34; without any pointers to how it does that&amp;#58;&lt;br /&gt;&amp;#91;http&amp;#58;&amp;#47;&amp;#47;lostechies.com&amp;#47;erichexter&amp;#47;2012&amp;#47;11&amp;#47;26&amp;#47;portable-areas-3-years-later&amp;#47;&amp;#93;&lt;br /&gt;</description><author>jptillman</author><pubDate>Fri, 29 Mar 2013 15:14:25 GMT</pubDate><guid isPermaLink="false">Edited Issue: EmbeddedResourceController functionality broken with IISExpress8 / VS2012 [7221] 20130329031425P</guid></item><item><title>Created Issue: EmbeddedResourceController functionality broken with IISExpress8 / VS2012 [7221]</title><link>http://mvccontrib.codeplex.com/workitem/7221</link><description>Config&amp;#58;  VS2012, MVC3, IISExpress8&lt;br /&gt;&lt;br /&gt;Problem&amp;#58;  &lt;br /&gt;&lt;br /&gt;Followed instructions on this blog post to install MvcContrib and create a Portable Area&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;elegantcode.com&amp;#47;2012&amp;#47;04&amp;#47;06&amp;#47;mvc-portable-areas&amp;#47;&lt;br /&gt;&lt;br /&gt;The Controllers&amp;#47;Views were working, but loading of scripts&amp;#47;css&amp;#47;imgs was broken.  &lt;br /&gt;&lt;br /&gt;What I did to figure things out&amp;#58;&lt;br /&gt;&lt;br /&gt;Troubleshooting revealed that IIS8 was returning a basic 404 error message and that the module being executed was the StaticFile module, not the MvcRouting module.  Further experimentation showed that the problem was occurring because my URLs looked like this&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;server&amp;#58;1234&amp;#47;AreaName&amp;#47;Content&amp;#47;Site.css&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;And a route set up like this&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;            context.MapRoute&amp;#40;&lt;br /&gt;                AreaName &amp;#43; &amp;#34;_content&amp;#34;,&lt;br /&gt;                base.AreaRoutePrefix &amp;#43; &amp;#34;&amp;#47;Content&amp;#47;&amp;#123;&amp;#42;resourceName&amp;#125;&amp;#34;,&lt;br /&gt;                new &amp;#123; controller &amp;#61; &amp;#34;EmbeddedResource&amp;#34;, action &amp;#61; &amp;#34;Index&amp;#34;, resourcePath &amp;#61; &amp;#34;Content&amp;#34; &amp;#125;,&lt;br /&gt;                new&amp;#91;&amp;#93; &amp;#123; &amp;#34;MvcContrib.PortableAreas&amp;#34; &amp;#125;&lt;br /&gt;            &amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;It was the period &amp;#40;&amp;#34;.&amp;#34;&amp;#41; in the filename that was causing the route to be bypassed.  I verified this by creating a file with no period, which resulted in EmbeddedResourceManager failing in a different way because it couldn&amp;#39;t determine the MIME type of the file &amp;#40;a different issue altogether&amp;#41;&lt;br /&gt;&lt;br /&gt;What fixed it for me&amp;#58;&lt;br /&gt;&lt;br /&gt;The problem and solution are discussed here&amp;#58;&lt;br /&gt;&amp;#91;http&amp;#58;&amp;#47;&amp;#47;aspnetwebstack.codeplex.com&amp;#47;workitem&amp;#47;226&amp;#93;&lt;br /&gt;&lt;br /&gt;I used the web.config mod mentioned in that posting and my problem disappeared.&lt;br /&gt;&lt;br /&gt;Additional Concerns&amp;#58;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m very surprised that I spent an entire day debugging a problem with EmbeddedResourceController in which the basic functionality enabled by that feature is broken with the &amp;#34;out of the box&amp;#34; config that VS2012 uses with IIS Express 8 and there are no issues reported here related to it at all.  &lt;br /&gt;&lt;br /&gt;It makes me worry that I&amp;#39;m using MvcContrib when I shouldn&amp;#39;t be, or that I&amp;#39;m using it in some non-standard way.  Can someone confirm for me that using MvcContrib with VS2012 &amp;#47; IISExpress8 is not an obsolete or deprecated configuration, and that the issue I describe above really is an issue for someone besides just me&amp;#63;&lt;br /&gt;&lt;br /&gt;Posts like this one don&amp;#39;t give me much confidence, or much guidance, as all it says is that &amp;#34;Nuget allows us to package the views, css, and javascript files into a nuget package as the method for distributing Portable Areas now.&amp;#34; without any pointers to how it does that&amp;#58;&lt;br /&gt;&amp;#91;http&amp;#58;&amp;#47;&amp;#47;lostechies.com&amp;#47;erichexter&amp;#47;2012&amp;#47;11&amp;#47;26&amp;#47;portable-areas-3-years-later&amp;#47;&amp;#93;&lt;br /&gt;</description><author>jptillman</author><pubDate>Fri, 29 Mar 2013 15:13:39 GMT</pubDate><guid isPermaLink="false">Created Issue: EmbeddedResourceController functionality broken with IISExpress8 / VS2012 [7221] 20130329031339P</guid></item><item><title>Created Issue: RunTime column name [7220]</title><link>http://mvccontrib.codeplex.com/workitem/7220</link><description>It would be very helpful to be able to assign Column names passing the Model&amp;#47;ViewContext.&lt;br /&gt;Currently &amp;#58;&lt;br /&gt;Column.For&amp;#40;row &amp;#61;&amp;#62; row.GetPeriodAmount&amp;#40;1&amp;#41;&amp;#41;.Named&amp;#40;Model.GetPeriodName&amp;#40;1&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;at the moment I cannot create a GridModel because I wont have access to Model&amp;#47;ViewContext there.&lt;br /&gt;&lt;br /&gt;Possible&amp;#58;&lt;br /&gt;Column.For&amp;#40;row &amp;#61;&amp;#62; row.GetPeriodAmount&amp;#40;1&amp;#41;&amp;#41;.Named&amp;#40; ViewContext.Model.GetPeriodName&amp;#40;1&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;</description><author>kavehsh</author><pubDate>Mon, 25 Mar 2013 02:25:00 GMT</pubDate><guid isPermaLink="false">Created Issue: RunTime column name [7220] 20130325022500A</guid></item><item><title>Created Issue: No anchor helper [7219]</title><link>http://mvccontrib.codeplex.com/workitem/7219</link><description>I don&amp;#39;t know if im missing something but I cant find any helper in FluentHTML to produce an anchor.&lt;br /&gt;&lt;br /&gt;Im not sure what other html is missing but the first thing I wanted to try using FluentHTML for was an anchor element and I cant find it.&lt;br /&gt;&lt;br /&gt;Why&amp;#63;&lt;br /&gt;</description><author>mgwalm</author><pubDate>Sat, 16 Mar 2013 03:04:58 GMT</pubDate><guid isPermaLink="false">Created Issue: No anchor helper [7219] 20130316030458A</guid></item><item><title>Commented Issue: MvcContrib does not have a strong name. [7087]</title><link>http://mvccontrib.codeplex.com/workitem/7087</link><description>Because MvcContrib does not have a strong name, it cannot be referenced in strong-named projects. It would be helpful if the MvcContrib libraries were signed with a strong name key.&lt;br /&gt;Comments: When is this going to get done&amp;#63;&amp;#10;&amp;#10;1. Its a stupidly easy thing to do.&amp;#10;2. Why wasn&amp;#39;t it done when the project was created&amp;#33;&amp;#10;&amp;#10;It&amp;#39;s madness we have had to download the source ourselves to fix this rather than get it from NuGet&amp;#33;</description><author>StevePhillips</author><pubDate>Fri, 08 Mar 2013 15:24:38 GMT</pubDate><guid isPermaLink="false">Commented Issue: MvcContrib does not have a strong name. [7087] 20130308032438P</guid></item><item><title>Commented Issue: Need extension method to controllerExtension RedirectToAction [7209]</title><link>http://mvccontrib.codeplex.com/workitem/7209</link><description>I am using portable ares in my application. I had a controller in standard area and one in poratble area. I want to redirect to an action on Poratble controller from standard controller. To do so I need to pass AreaName&amp;#47;ControllerName and Action name to redirectToAction method. But my problem is here I want to use ControllerExtensions redirectToAction as I want to pass some parameter with this redirect. But controllerExtension does not provide any way in which i can pass AreaName with controller. So I have written a new method in COntrollerExtension which takes three arguments last one for AreaName. Please have a look into attached class. This solves my problem.&lt;br /&gt;Comments: Nice post. I was stuck on this point...this was really helpfull.&amp;#10;Thanks</description><author>Kaur</author><pubDate>Fri, 08 Mar 2013 12:47:57 GMT</pubDate><guid isPermaLink="false">Commented Issue: Need extension method to controllerExtension RedirectToAction [7209] 20130308124757P</guid></item><item><title>Created Issue: 4 Records Exist, but Grid is Empty [7218]</title><link>http://mvccontrib.codeplex.com/workitem/7218</link><description>In my controller, I have&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;ViewBag.Count &amp;#61; db.Directories.Count&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt; return View&amp;#40;db.Directories.ToList&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;In my view I have&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#64;model IEnumerable&amp;#60;MvcApplication1.Models.DIRECTORY_USER&amp;#62; &lt;br /&gt;&lt;br /&gt;&amp;#64;using MvcContrib.UI.Grid&lt;br /&gt;&lt;br /&gt;ViewBag.Count &amp;#61; &amp;#64;ViewBag.Count&lt;br /&gt;&amp;#60;table&amp;#62;&lt;br /&gt;&amp;#64;foreach &amp;#40;var item in Model&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    &amp;#60;tr&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;&amp;#64;item.ID&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;&amp;#64;item.USER_ID&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;tr&amp;#62;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#60;&amp;#47;table&amp;#62;&lt;br /&gt;&amp;#64;Html.Grid&amp;#40;Model&amp;#41;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The output I get is&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;ViewBag.Count &amp;#61; 4&lt;br /&gt;&amp;#60;table&amp;#62;&lt;br /&gt;    &amp;#60;tr&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;39d3fe7f-fb1c-4c0f-948e-43093f1d7f85&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;265ca3c1-9890-4680-b10c-8c7c5e22b26f&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;tr&amp;#62;&lt;br /&gt;    &amp;#60;tr&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;f07f0aee-3948-473a-873f-74d446030d36&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;229db054-e62c-4981-878e-cd0bd5c9a1ac&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;tr&amp;#62;&lt;br /&gt;    &amp;#60;tr&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;a92440cd-9393-4d1b-abfb-e705ea739c59&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;4cd997cf-1715-43b0-9354-0ddf90f33fe6&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;tr&amp;#62;&lt;br /&gt;    &amp;#60;tr&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;7c265ae0-7c8e-4dd3-ae76-f52e95138b6e&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;        &amp;#60;td&amp;#62;45254c9a-f078-4d50-bdc8-3e823bdcce41&amp;#60;&amp;#47;td&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;tr&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;table&amp;#62;&lt;br /&gt;&amp;#60;table class&amp;#61;&amp;#34;grid&amp;#34;&amp;#62;&amp;#60;thead&amp;#62;&amp;#60;tr&amp;#62;&amp;#60;&amp;#47;tr&amp;#62;&amp;#60;&amp;#47;thead&amp;#62;&amp;#60;tbody&amp;#62;&amp;#60;tr class&amp;#61;&amp;#34;gridrow&amp;#34;&amp;#62;&amp;#60;&amp;#47;tr&amp;#62;&amp;#60;tr class&amp;#61;&amp;#34;gridrow_alternate&amp;#34;&amp;#62;&amp;#60;&amp;#47;tr&amp;#62;&amp;#60;tr class&amp;#61;&amp;#34;gridrow&amp;#34;&amp;#62;&amp;#60;&amp;#47;tr&amp;#62;&amp;#60;tr class&amp;#61;&amp;#34;gridrow_alternate&amp;#34;&amp;#62;&amp;#60;&amp;#47;tr&amp;#62;&amp;#60;&amp;#47;tbody&amp;#62;&amp;#60;&amp;#47;table&amp;#62;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If the records are being shown in my &amp;#96;foreach&amp;#96;, then why won&amp;#39;t they show in the grid&amp;#63;  I don&amp;#39;t seem to have any errors anywhere.  What can I do to make the grid work&amp;#63;&lt;br /&gt;</description><author>EMB01</author><pubDate>Thu, 07 Feb 2013 14:06:14 GMT</pubDate><guid isPermaLink="false">Created Issue: 4 Records Exist, but Grid is Empty [7218] 20130207020614P</guid></item><item><title>Commented Issue: Code bug due to "IMessageHandler" interface name [7151]</title><link>http://mvccontrib.codeplex.com/workitem/7151</link><description>We found issue with using MVCContrib Portable area&amp;#39;s due to below code bug in Bus.cs file. &lt;br /&gt;&lt;br /&gt;In the Bus.cs file, there is an method &amp;#34;IsValidType&amp;#40;Type type&amp;#41;&amp;#34; which returns True value if the Type is an type of IMessageHandler interface.  Here instead of comparing with the fully qualified name of IMessageHandler interface name it is just comparing with the IMessageHandler name. &lt;br /&gt;&lt;br /&gt;We also have an interface &amp;#34;IMessageHandler&amp;#34; in our solution. Due to this conflict application bus also adding our classes also as MVCContrib IMessageHandler interface types. This is resulting an issue.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Please fix the below code in Bus.cs file.&lt;br /&gt;&lt;br /&gt;Method name&amp;#58; &amp;#34;public static bool IsValidType&amp;#40;Type type&amp;#41;&amp;#34;&lt;br /&gt;Code fix&amp;#58; &lt;br /&gt;       Original code line&amp;#58; bool isIMessageHandler &amp;#61; type.GetInterface&amp;#40;typeof&amp;#40;IMessageHandler&amp;#41;.Name&amp;#41; &amp;#33;&amp;#61; null&amp;#59;&lt;br /&gt;       Change to new code line&amp;#58; bool isIMessageHandler &amp;#61; type.GetInterface&amp;#40;typeof&amp;#40;IMessageHandler&amp;#41;.FullName&amp;#41; &amp;#33;&amp;#61; null&amp;#59;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Ravi Kura.&lt;br /&gt;&lt;br /&gt;Comments: I&amp;#39;ve submitted a pull request for a fork that contains this fix &amp;#40;jpjerkinsFix7151&amp;#41;.  I, too, ran into the problem when trying to add ServiceStack to a project that used MvcContrib - that&amp;#39;s actually my motivation to see this bug fixed.</description><author>jpjerkins</author><pubDate>Tue, 08 Jan 2013 19:29:54 GMT</pubDate><guid isPermaLink="false">Commented Issue: Code bug due to "IMessageHandler" interface name [7151] 20130108072954P</guid></item><item><title>Edited Issue: FluentHtml Expression overloads in vs2012/razor [7217]</title><link>http://mvccontrib.codeplex.com/workitem/7217</link><description>After installing the latest &amp;#34;MvcContrib.Mvc3.FluentHtml-ci&amp;#34; via Nuget, I am unable to get the FluentHtml expression overloads working.  &amp;#40;The regular text based overloads work fine&amp;#41;.  &amp;#60;br &amp;#47;&amp;#62;&amp;#60;br &amp;#47;&amp;#62;I am using VS 2012 and the Razor view engine.  &amp;#60;br &amp;#47;&amp;#62;&amp;#60;br &amp;#47;&amp;#62;I have tried inheriting the view from &amp;#34;MvcContrib.FluentHtml.ModelWebViewPage&amp;#60;T&amp;#62;&amp;#34;, but still no go. &amp;#60;br &amp;#47;&amp;#62;&amp;#60;br &amp;#47;&amp;#62;Also, I have added &amp;#34;MvcContrib.FluentHtml&amp;#34; to my web.config &amp;#47; system.web.webPages.razor &amp;#47; pages.&amp;#60;br &amp;#47;&amp;#62;&amp;#60;br &amp;#47;&amp;#62;EDIT&amp;#58; It occurred to me immediately after posting that I am using MVC4, and the Nuget package specifically says &amp;#34;MVC3&amp;#34;.  So I will take that to mean that MvcContrib does not officially support MVC4, thus making this a non-issue&amp;#33;&amp;#60;br &amp;#47;&amp;#62;&lt;br /&gt;</description><author>jmarr</author><pubDate>Sat, 22 Dec 2012 17:22:41 GMT</pubDate><guid isPermaLink="false">Edited Issue: FluentHtml Expression overloads in vs2012/razor [7217] 20121222052241P</guid></item><item><title>Created Issue: FluentHtml Expression overloads in vs2012/razor [7217]</title><link>http://mvccontrib.codeplex.com/workitem/7217</link><description>After installing the latest &amp;#34;MvcContrib.Mvc3.FluentHtml-ci&amp;#34; via Nuget, I am unable to get the FluentHtml expression overloads working.  &amp;#40;The regular text based overloads work fine&amp;#41;.  &lt;br /&gt;&lt;br /&gt;I am using VS 2012 and the Razor view engine.  &lt;br /&gt;&lt;br /&gt;I have tried inheriting the view from &amp;#34;MvcContrib.FluentHtml.ModelWebViewPage&amp;#60;T&amp;#62;&amp;#34;, but still no go. &lt;br /&gt;&lt;br /&gt;Also, I have added &amp;#34;MvcContrib.FluentHtml&amp;#34; to my web.config &amp;#47; system.web.webPages.razor &amp;#47; pages.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><author>jmarr</author><pubDate>Sat, 22 Dec 2012 17:18:01 GMT</pubDate><guid isPermaLink="false">Created Issue: FluentHtml Expression overloads in vs2012/razor [7217] 20121222051801P</guid></item><item><title>Created Issue: ASP.Net MVC4 - Multiple file upload [7216]</title><link>http://mvccontrib.codeplex.com/workitem/7216</link><description>Hi&lt;br /&gt;I need to create a MVC app which should allow the user to select multiple files and upload  them on teh file share. Further processing needs to be then carried on.&lt;br /&gt;Can we do it using MvcContrib&amp;#63;&lt;br /&gt;If not, any other pointers will behelpful.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;</description><author>Mukul_Jain</author><pubDate>Fri, 07 Dec 2012 11:30:38 GMT</pubDate><guid isPermaLink="false">Created Issue: ASP.Net MVC4 - Multiple file upload [7216] 20121207113038A</guid></item><item><title>Created Issue: Portable areas - MVC4 support? [7215]</title><link>http://mvccontrib.codeplex.com/workitem/7215</link><description>Hi, I&amp;#39;m trying to use this lib in a MVC4 web application, but I keep getting exceptions whenever using any HtmlHelper method in my area views. I can only suppose this is due to the different version of MVC being used. I get exceptions like the following &amp;#40;see below&amp;#41;. Could anyone suggest a workaround, or does anybody know if there are plans for supporting portable areas for MVC4&amp;#63; Thanks&amp;#33;&lt;br /&gt;&lt;br /&gt;System.NullReferenceException was unhandled by user code&lt;br /&gt;  HResult&amp;#61;-2147467261&lt;br /&gt;  Message&amp;#61;Object reference not set to an instance of an object.&lt;br /&gt;  Source&amp;#61;App_Web_field.master.5f132152.8jdnc_7s&lt;br /&gt;  StackTrace&amp;#58;&lt;br /&gt;       at ASP.views_inputbuilders_editortemplates_field_master.__Render__control1&amp;#40;HtmlTextWriter __w, Control parameterContainer&amp;#41; in http&amp;#58;&amp;#47;&amp;#47;server&amp;#47;Views&amp;#47;InputBuilders&amp;#47;EditorTemplates&amp;#47;Field.Master&amp;#58;line 5&lt;br /&gt;       at System.Web.UI.Control.RenderChildrenInternal&amp;#40;HtmlTextWriter writer, ICollection children&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderChildren&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.Render&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderControlInternal&amp;#40;HtmlTextWriter writer, ControlAdapter adapter&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderControl&amp;#40;HtmlTextWriter writer, ControlAdapter adapter&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderControl&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderChildrenInternal&amp;#40;HtmlTextWriter writer, ICollection children&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderChildren&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;       at System.Web.UI.Page.Render&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;       at System.Web.Mvc.ViewPage.Render&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderControlInternal&amp;#40;HtmlTextWriter writer, ControlAdapter adapter&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderControl&amp;#40;HtmlTextWriter writer, ControlAdapter adapter&amp;#41;&lt;br /&gt;       at System.Web.UI.Control.RenderControl&amp;#40;HtmlTextWriter writer&amp;#41;&lt;br /&gt;       at System.Web.UI.Page.ProcessRequestMain&amp;#40;Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint&amp;#41;&lt;br /&gt;  InnerException&amp;#58; &amp;#40;none&amp;#41;&lt;br /&gt;</description><author>Mathetes</author><pubDate>Sat, 01 Dec 2012 19:16:43 GMT</pubDate><guid isPermaLink="false">Created Issue: Portable areas - MVC4 support? [7215] 20121201071643P</guid></item><item><title>Created Issue: Please change namespaces [7214]</title><link>http://mvccontrib.codeplex.com/workitem/7214</link><description>Please change Microsoft.Web.Mvc to System.Web.Mvc for ASP.NET 4.5.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>weitzhandler</author><pubDate>Tue, 06 Nov 2012 09:42:10 GMT</pubDate><guid isPermaLink="false">Created Issue: Please change namespaces [7214] 20121106094210A</guid></item><item><title>Closed Issue: T4MVC does not handle a generic result return type from a controller method [7178]</title><link>http://mvccontrib.codeplex.com/workitem/7178</link><description>Generic results such as MyJsonResult&amp;#60;T&amp;#62; are all treated as the same class by T4MVC.  This is driven by the use of a dictionary to track result types by Name instead of FullName and by the use of the Name for declaring the return class as  T4MVC_ &amp;#43; Name instead of a unique name derived from FullName. &lt;br /&gt;Comments: I ended up doing &amp;#35;1 to avoid breaking the build. If someone wants to tackle &amp;#35;2, go ahead, but for now this should get things working.&amp;#10;&amp;#10;Vanuyja&amp;#58; can you please verify with T4MVC 2.11.1 &amp;#40;from NuGet&amp;#41;&amp;#63; Thanks&amp;#33;</description><author>davidebbo</author><pubDate>Wed, 10 Oct 2012 21:52:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: T4MVC does not handle a generic result return type from a controller method [7178] 20121010095227P</guid></item><item><title>Commented Issue: T4MVC does not handle a generic result return type from a controller method [7178]</title><link>http://mvccontrib.codeplex.com/workitem/7178</link><description>Generic results such as MyJsonResult&amp;#60;T&amp;#62; are all treated as the same class by T4MVC.  This is driven by the use of a dictionary to track result types by Name instead of FullName and by the use of the Name for declaring the return class as  T4MVC_ &amp;#43; Name instead of a unique name derived from FullName. &lt;br /&gt;Comments: Ah yes, I see how this is broken. We have two options here&amp;#58;&amp;#10;&amp;#10;1. Simplest is to just make T4MVC ignore actions that return generic types. T4MVC won&amp;#39;t be usable for those actions, but at least it won&amp;#39;t break the build&amp;#33;&amp;#10;&amp;#10;2. Do the full support so it all works. But that is harder to get right.&amp;#10;&amp;#10;Would either of you be interested in trying to make a fix for this issue and sending a pull request&amp;#63;</description><author>davidebbo</author><pubDate>Wed, 10 Oct 2012 17:09:54 GMT</pubDate><guid isPermaLink="false">Commented Issue: T4MVC does not handle a generic result return type from a controller method [7178] 20121010050954P</guid></item><item><title>Commented Issue: T4MVC does not handle a generic result return type from a controller method [7178]</title><link>http://mvccontrib.codeplex.com/workitem/7178</link><description>Generic results such as MyJsonResult&amp;#60;T&amp;#62; are all treated as the same class by T4MVC.  This is driven by the use of a dictionary to track result types by Name instead of FullName and by the use of the Name for declaring the return class as  T4MVC_ &amp;#43; Name instead of a unique name derived from FullName. &lt;br /&gt;Comments: I have the same problem.&amp;#10;&amp;#10;1 Generic class&amp;#58; CsvResult&amp;#60;T&amp;#62; &amp;#58; System.Web.Mvc.FileResult&amp;#10;&amp;#10;Controller x&amp;#58;&amp;#10;&amp;#10;public virtual CsvResult&amp;#60;Summary1&amp;#62; Export&amp;#40;...&amp;#41;&amp;#10;&amp;#10;Controller y&amp;#58;&amp;#10;public virtual CsvResult&amp;#60;Summary2&amp;#62; Export&amp;#40;...&amp;#41;&amp;#10;&amp;#10;It generates a non-generic class of type &amp;#34;T4MVC_CsvResult&amp;#34;.&amp;#10;This class inherits from CsvResult&amp;#60;Summary1&amp;#62;, IT4MVCActionResult.&amp;#10;&amp;#10;Thus the action returning CsvResult&amp;#60;Summary2&amp;#62; fails, because its return type is a T4MVC_CsvResult....&amp;#10;&amp;#10;&amp;#10;</description><author>vanuyja</author><pubDate>Wed, 10 Oct 2012 15:24:03 GMT</pubDate><guid isPermaLink="false">Commented Issue: T4MVC does not handle a generic result return type from a controller method [7178] 20121010032403P</guid></item><item><title>Created Issue: Unit Tests in TestHelper fail [7213]</title><link>http://mvccontrib.codeplex.com/workitem/7213</link><description>Test &amp;#39;MvcContrib.TestHelper.Sample.StarsControllerTest.AddFormStarShouldRedirectToList&amp;#39; failed&amp;#58; MvcContrib.TestHelper.ActionResultAssertionException &amp;#58; Expected result to be of type RedirectToRouteResult. It is actually of type RedirectToRouteResult.&lt;br /&gt;&amp;#9;C&amp;#58;&amp;#92;Users&amp;#92;dlaub&amp;#92;Downloads&amp;#92;MVCContrib.source&amp;#92;src&amp;#92;MvcContrib.TestHelper&amp;#92;MvcContrib.TestHelper&amp;#92;ActionResultHelper.cs&amp;#40;24,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.ActionResultHelper.AssertResultIs&amp;#91;T&amp;#93;&amp;#40;ActionResult result&amp;#41;&lt;br /&gt;&amp;#9;C&amp;#58;&amp;#92;Users&amp;#92;dlaub&amp;#92;Downloads&amp;#92;MVCContrib.source&amp;#92;src&amp;#92;MvcContrib.TestHelper&amp;#92;MvcContrib.TestHelper&amp;#92;ActionResultHelper.cs&amp;#40;67,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.ActionResultHelper.AssertActionRedirect&amp;#40;ActionResult result&amp;#41;&lt;br /&gt;&amp;#9;StarsControllerTest.cs&amp;#40;43,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.Sample.StarsControllerTest.AddFormStarShouldRedirectToList&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;Test &amp;#39;MvcContrib.TestHelper.Sample.StarsControllerTest.ListControllerSelectsListView&amp;#39; failed&amp;#58; MvcContrib.TestHelper.ActionResultAssertionException &amp;#58; Expected result to be of type ViewResult. It is actually of type ViewResult.&lt;br /&gt;&amp;#9;C&amp;#58;&amp;#92;Users&amp;#92;dlaub&amp;#92;Downloads&amp;#92;MVCContrib.source&amp;#92;src&amp;#92;MvcContrib.TestHelper&amp;#92;MvcContrib.TestHelper&amp;#92;ActionResultHelper.cs&amp;#40;24,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.ActionResultHelper.AssertResultIs&amp;#91;T&amp;#93;&amp;#40;ActionResult result&amp;#41;&lt;br /&gt;&amp;#9;C&amp;#58;&amp;#92;Users&amp;#92;dlaub&amp;#92;Downloads&amp;#92;MVCContrib.source&amp;#92;src&amp;#92;MvcContrib.TestHelper&amp;#92;MvcContrib.TestHelper&amp;#92;ActionResultHelper.cs&amp;#40;37,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.ActionResultHelper.AssertViewRendered&amp;#40;ActionResult result&amp;#41;&lt;br /&gt;&amp;#9;StarsControllerTest.cs&amp;#40;37,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.Sample.StarsControllerTest.ListControllerSelectsListView&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;Test &amp;#39;MvcContrib.TestHelper.Sample.StarsControllerTest.NearbyShouldRedirectToListWithLinks&amp;#39; failed&amp;#58; MvcContrib.TestHelper.ActionResultAssertionException &amp;#58; Expected result to be of type RedirectToRouteResult. It is actually of type RedirectToRouteResult.&lt;br /&gt;&amp;#9;C&amp;#58;&amp;#92;Users&amp;#92;dlaub&amp;#92;Downloads&amp;#92;MVCContrib.source&amp;#92;src&amp;#92;MvcContrib.TestHelper&amp;#92;MvcContrib.TestHelper&amp;#92;ActionResultHelper.cs&amp;#40;24,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.ActionResultHelper.AssertResultIs&amp;#91;T&amp;#93;&amp;#40;ActionResult result&amp;#41;&lt;br /&gt;&amp;#9;C&amp;#58;&amp;#92;Users&amp;#92;dlaub&amp;#92;Downloads&amp;#92;MVCContrib.source&amp;#92;src&amp;#92;MvcContrib.TestHelper&amp;#92;MvcContrib.TestHelper&amp;#92;ActionResultHelper.cs&amp;#40;67,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.ActionResultHelper.AssertActionRedirect&amp;#40;ActionResult result&amp;#41;&lt;br /&gt;&amp;#9;StarsControllerTest.cs&amp;#40;65,0&amp;#41;&amp;#58; at MvcContrib.TestHelper.Sample.StarsControllerTest.NearbyShouldRedirectToListWithLinks&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;2 passed, 3 failed, 0 skipped, took 5.41 seconds &amp;#40;NUnit 2.6.0&amp;#41;.&lt;br /&gt;&lt;br /&gt;</description><author>dmlaub123</author><pubDate>Wed, 10 Oct 2012 13:35:55 GMT</pubDate><guid isPermaLink="false">Created Issue: Unit Tests in TestHelper fail [7213] 20121010013555P</guid></item></channel></rss>