User Haacked - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T15:31:10Zhttp://stackoverflow.com/feeds/user/598http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1713379/asp-net-mvc-routing-with-default-controller/1778039#17780394Answer by Haacked for ASP.NET MVC Routing with Default ControllerHaacked2009-11-22T06:52:25Z2009-11-22T06:52:25Z<p>Why does the first URL in the new list still have "Customer". I assume that's a typo and you meant:</p>
<ul>
<li><a href="http://example.com/List" rel="nofollow">http://example.com/List</a></li>
<li><a href="http://example.com/List/Page/2" rel="nofollow">http://example.com/List/Page/2</a></li>
<li><a href="http://example.com/List" rel="nofollow">http://example.com/List</a></li>
<li><a href="http://example.com/View/8372" rel="nofollow">http://example.com/View/8372</a></li>
<li><a href="http://example.com/Search/foo/Page/5" rel="nofollow">http://example.com/Search/foo/Page/5</a></li>
</ul>
<p>The following routes work for me:</p>
<pre><code>routes.MapRoute(
"CustomerSearch"
, "Search/{query}/Page/{page}"
, new { controller = "Customer", action = "Search" }
);
routes.MapRoute(
"CustomerGeneric"
, "{action}/{id}/Page/{page}"
, new { controller = "Customer" }
);
//-- Default Route
routes.MapRoute(
"Default",
"{action}/{id}",
new { controller = "Customer", action = "Index", id = "" }
);
</code></pre>
<p>How are you generating your links. Since the Controller is no longer in the URL of your route (aka, you don't have "{controller}" in the route URL), but it's a default value, you need to make sure to specify the controller when generating routes.</p>
<p>Thus instead of </p>
<pre><code>Html.ActionLink("LinkText", "ActionName")
</code></pre>
<p>do</p>
<pre><code>Html.ActionLink("LinkText", "ActionName", "Customer")
</code></pre>
<p>Why? Suppose you had the following routes.</p>
<pre><code>routes.MapRoute(
"Default",
"foo/{action}",
new { controller = "Cool" }
);
routes.MapRoute(
"Default",
"bar/{action}",
new { controller = "Neat" }
);
</code></pre>
<p>Which route did you mean when you call this?</p>
<pre><code><%= Html.ActionLink("LinkText", "ActionName") %>
</code></pre>
<p>You can differentiate by specifying the controller and we'll pick the one that has a default value that matches the specified one.</p>
http://stackoverflow.com/questions/1676731/asp-net-mvc-v2-debugging-model-binding-issues-bug/1677114#167711435Answer by Haacked for ASP.net MVC v2 - Debugging Model Binding Issues - BUG?Haacked2009-11-04T22:28:46Z2009-11-10T18:45:17Z<p>Turns out this behavior is by design due to how interface inheritance works. Interfaces do not define implementations, thus ILocation doesn't "inherit" the properties of ILocationSource. Rather, ILocation only defines what a concrete implementation must implement.</p>
<p>For the full details including the section of the CLI (Common Language Infrastructure) spec which defines this behavior, check out: <a href="http://haacked.com/archive/2009/11/10/interface-inheritance-esoterica.aspx" rel="nofollow">http://haacked.com/archive/2009/11/10/interface-inheritance-esoterica.aspx</a></p>
http://stackoverflow.com/questions/256964/free-usable-partition-editor-for-windows4Free usable partition editor for Windows? [closed]Haacked2008-11-02T15:14:28Z2009-11-06T03:51:11Z
<p>Anyone know of a good usable free partition editor for Windows? I just need to add an unused partition to my system partition.</p>
http://stackoverflow.com/questions/1659631/mvc-compiled-views/1665658#16656584Answer by Haacked for MVC Compiled ViewsHaacked2009-11-03T06:53:49Z2009-11-03T06:53:49Z<p>If you want a fully compiled ASP.NET MVC project with your views compiled, you can either run aspnet_compiler.exe against your web app.</p>
<p>That's the hard way. The easy way is to install the Web Deployment Project add-in to Visual Studio. Then you can add a web deployment project and set it to fully compile your web application.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&displaylang=en</a></p>
<p>It's really easy to use and gets you full compilation.</p>
http://stackoverflow.com/questions/31722/anyone-have-a-diff-algorithm-for-rendered-html10Anyone have a diff algorithm for rendered HTML?Haacked2008-08-28T06:33:37Z2009-11-02T10:21:43Z
<p>I'm interested in seeing a good diff algorithm, possibly in Javascript, for rendering a side-by-side diff of two HTML pages. The idea would be that the diff would show the differences of the <em>rendered</em> HTML.</p>
<p>To clarify, I want to be able to see the side-by-side diffs <em>as</em> rendered output. So if I delete a paragraph, the side by side view would know to space things correctly.</p>
http://stackoverflow.com/questions/1595329/iis-6-to-7-is-making-me-scared-of-web-configs/1641386#16413862Answer by Haacked for IIS 6 to 7 is making me scared of web.configsHaacked2009-10-29T03:00:05Z2009-10-29T03:00:05Z<p>If you run your IIS 7 websites using the Classic .NET App Pool, then the config files will match what you would use for IIS 6. That's probably the easiest thing to do until you're ready to migrate everything to IIS 7.</p>
http://stackoverflow.com/questions/1640648/net-mvc-custom-routing-with-empty-parameters/1640810#16408100Answer by Haacked for .NET MVC custom routing with empty parametersHaacked2009-10-28T23:31:26Z2009-10-29T02:58:29Z<p>I see one problem, your second and third route have exactly the same URL parameters. So the third route will never get called. Why do you have that there? It looks like you could simply delete the second route. </p>
<p>Also, the second route has less parameters than the first route. That means the first route will probably match both the URLs that you posted. You should probably re-order those routes.</p>
<p>UPDATE: Oh! I didn't notice the double slash in the URL. That'll never work. It's not a valid URL as far as ASP.NET is concerned and thus ASP.NET is blocking the request even before it gets to Routing.</p>
http://stackoverflow.com/questions/1628872/asp-net-mvc-unbind-action-parameter/1640888#16408882Answer by Haacked for ASP.NET MVC Unbind Action ParameterHaacked2009-10-28T23:57:24Z2009-10-29T02:53:33Z<p>Try calling</p>
<pre><code>ModelState["value1"].Value
= new ValueProviderResult(null, string.Empty, CultureInfo.InvariantCulture);
</code></pre>
<p>before you return the view from within your controller action.</p>
<p>What this does is keep all the errors associated with the key "value1", but replaces the value with an empty value.</p>
http://stackoverflow.com/questions/1353029/conditionally-validating-portions-of-an-asp-net-mvc-model-with-dataannotations/1640914#16409140Answer by Haacked for Conditionally validating portions of an ASP.NET MVC Model with DataAnnotations?Haacked2009-10-29T00:04:05Z2009-10-29T00:04:05Z<p>Make sure the fields you don't want validated are not posted to the action. We only validate the fields that were actually posted.</p>
http://stackoverflow.com/questions/1625707/why-is-request-contenttype-always-empty-on-my-requests/1640904#16409041Answer by Haacked for Why is Request.ContentType always empty on my requests?Haacked2009-10-29T00:01:09Z2009-10-29T00:01:09Z<p>It looks like you're trying to use the ContentType header to determine which type of response to return. That's not what it's for. You should be using the Accepts header instead, which tells the server which content types you accept.</p>
http://stackoverflow.com/questions/1630048/override-editorformodel-template/1640870#16408701Answer by Haacked for Override EditorForModel TemplateHaacked2009-10-28T23:53:50Z2009-10-28T23:53:50Z<p>You can write an Object.ascx template and perform your own logic.</p>
http://stackoverflow.com/questions/1639261/what-is-the-simplest-way-to-return-different-content-types-based-on-the-extension/1640834#16408341Answer by Haacked for What is the simplest way to return different content types based on the extension in the URL?Haacked2009-10-28T23:36:57Z2009-10-28T23:36:57Z<p>I wrote a blog post that shows one possible example. It's a tiny bit complicated, but might work for your needs.</p>
<p><a href="http://haacked.com/archive/2009/01/06/handling-formats-based-on-url-extension.aspx" rel="nofollow">http://haacked.com/archive/2009/01/06/handling-formats-based-on-url-extension.aspx</a></p>
http://stackoverflow.com/questions/1639971/mvc-2-arearegistration-routes-order/1640825#16408251Answer by Haacked for MVC 2 AreaRegistration Routes OrderHaacked2009-10-28T23:34:37Z2009-10-28T23:34:37Z<p>Currently it's not possible to order areas. However, I think it makes sense to try and make each area as independent from other areas as possible so the order doesn't matter. </p>
<p>For example, instead of having the default {controller}/{action}/{id} route, maybe replace that with specific routes for each controller. Or add a constraint to that default route.</p>
<p>We are mulling over options to allow ordering, but we don't want to overcomplicate the feature.</p>
http://stackoverflow.com/questions/1640102/customize-htmlhelper-validationmessage-output/1640816#16408161Answer by Haacked for Customize HtmlHelper.ValidationMessage outputHaacked2009-10-28T23:32:30Z2009-10-28T23:32:30Z<p>ASP.NET MVC 2 will provide the ability to customize the message. For ASP.NET MVC 1.0, Kurt's solution does the trick.</p>
http://stackoverflow.com/questions/43743/asp-net-mvc-performance/46200#4620030Answer by Haacked for ASP.NET MVC PerformanceHaacked2008-09-05T16:19:02Z2009-10-16T10:41:56Z<p>We haven't performed the type of scalability and perf tests necessary to come up with any conclusions. I think ScottGu may have been discussing potential perf targets. As we move towards Beta and RTM, we will internally be doing more perf testing. However, I'm not sure what our policy is on publishing results of perf tests.</p>
<p>In any case, any such tests really need to consider real world applications...</p>
http://stackoverflow.com/questions/1525244/asp-net-mvc-with-viewstate/1526199#15261991Answer by Haacked for Asp.net MVC with ViewState?Haacked2009-10-06T15:08:30Z2009-10-06T15:08:30Z<p>We shouldn equate Base64 encoding with ViewState. I don't see the state of the view being serialized in that snippet. I see the state of the model. So describing that as ViewState For Asp.net MVC is very misleading.</p>
<p>Also consider this is opt-in and not automatic in any way. It's primary usage will probably be for optimistic concurrency as well as Wizard UIs where you want to store the users previous selections in the view as opposed to the Session or Cookie.</p>
http://stackoverflow.com/questions/1518017/how-to-mockup-a-base-controller-in-asp-net-mvc/1518084#15180843Answer by Haacked for How to mockup a base controller in asp.net mvc?Haacked2009-10-05T02:55:01Z2009-10-05T02:55:01Z<p>Instead of mocking up your base controller, why don't you mock up the service layer interface. For example, using MoQ you can do this:</p>
<pre><code>var serviceMock = new Mock<IServiceLayer>();
//serviceMock.Setup(s => s.SomeMethodCall()).Returns(someObject);
var controller = new BaseController(serviceMock.Object);
</code></pre>
<p>The general idea is if you're testing your controller, you want to mock its dependencies. You want to avoid mocking the very thing you are testing.</p>
http://stackoverflow.com/questions/1508045/url-rewritting-asp-net-mvc/1511268#15112680Answer by Haacked for URL Rewritting + ASP.NET MVCHaacked2009-10-02T19:02:09Z2009-10-02T19:02:09Z<p>Try changing your PostController to this (for testing purposes).</p>
<pre><code>public class PostController : Controller
{
public string Index(string postTitle)
{
return postTitle;
}
}
</code></pre>
<p>And your route defined as</p>
<pre><code>routes.MapRoute(
"Posts", // route name
"Post/{PostTitle}",
new { controller = "Post", action = "Index" }
);
</code></pre>
http://stackoverflow.com/questions/1510946/get-formcollection-out-controllercontext-for-custom-model-binder/1511187#15111871Answer by Haacked for Get FormCollection out controllerContext for Custom Model BinderHaacked2009-10-02T18:43:56Z2009-10-02T18:58:13Z<p>Try this:</p>
<pre><code>var formCollection = new FormCollection(controllerContext.HttpContext.Request.Form)
</code></pre>
<p>FormCollection is a type we added to ASP.NET MVC that has its own ModelBinder. You can look at the code for FormCollectionBinderAttribute to see what I mean.</p>
http://stackoverflow.com/questions/1510557/xmlserializer-under-medium-trust-bombs/1511227#15112273Answer by Haacked for XmlSerializer under Medium trust bombsHaacked2009-10-02T18:51:39Z2009-10-02T18:51:39Z<p>Try running the sgen.exe command against your assembly to pre-generate the serialization assemblies. sgen.exe is part of the Visual Studio SDK and should already be on your machine if you're using VS.</p>
http://stackoverflow.com/questions/1511004/having-trouble-deplying-asp-mvc-app-to-normal-shared-hosting-provider/1511172#15111721Answer by Haacked for Having trouble deplying ASP MVC app to normal shared hosting providerHaacked2009-10-02T18:40:57Z2009-10-02T18:40:57Z<p>It sounds like it's possible you're not deploying to a webroot. Is that the case? Try deploying an empty MVC project.</p>
http://stackoverflow.com/questions/884852/how-can-i-disable-session-state-in-asp-net-mvc/1347812#13478123Answer by Haacked for How can I disable session state in ASP.NET MVC?Haacked2009-08-28T15:40:35Z2009-08-28T15:40:35Z<p>If you need to use TempData for simple strings, you can use the CookieTempDataProvider in MvcFutures <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471" rel="nofollow">http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471</a>.</p>
http://stackoverflow.com/questions/1295013/routing-issue-in-asp-net-mvc/1295290#12952900Answer by Haacked for Routing issue in Asp.Net MvcHaacked2009-08-18T17:15:31Z2009-08-18T17:15:31Z<p>Try this:</p>
<pre><code><li><%=Html.ActionLink(theme, "themed", new {controller = "puzzles", **action="ThemedPuzzles"** themes = theme})%></li>
</code></pre>
<p>You need to specify action because you have a default for action but there's no {action} parameter in your URL. The reason for this behavior is suppose have another route like </p>
<pre><code>routes.MapRoute(
"SpecialThemedPuzzles",
"puzzles/special-themed/{themes}",
new { controller = "puzzles", action = "SpecialThemedPuzzles", themes = "" }
);
</code></pre>
<p>How would you generate a URL to this route? You wouldn't be able to unless we had some way to distinguish this route from your other theme route. So in this case, when Routing sees a parameter in the defaults dictionary that is not a parameter in the actual URL, it requires that you specify that value to distinguish between the two routes.</p>
<p>In this case, it requires you specify the action to distinguish between the routes.</p>
http://stackoverflow.com/questions/1295184/paging-in-asp-net-mvc-c/1295256#12952561Answer by Haacked for Paging in asp.net mvc c#Haacked2009-08-18T17:08:16Z2009-08-18T17:08:16Z<p>That's because your link is issuing a GET request and the form data is not being submitted to page 2. You could either have your page 2 link issue a form post using JavaScript (not recommended) or simply pass in the form data into that link so they show up in the query string.</p>
http://stackoverflow.com/questions/1268763/retrieve-the-current-view-name-in-asp-net-mvc/1278899#12788995Answer by Haacked for Retrieve the current view name in ASP.NET MVC?Haacked2009-08-14T16:39:50Z2009-08-17T13:12:49Z<p>Well if you don't mind having your code tied to the specific view engine you're using, you can look at the ViewContext.View property and cast it to WebFormView</p>
<p>var viewPath = ((WebFormView)ViewContext.View).ViewPath;</p>
<p>I believe that will get you the view name at the end.</p>
<p>EDIT: Haacked is absolutely spot-on; to make things a bit neater I've wrapped the logic up in an extension method like so:</p>
<pre><code>public static class IViewExtensions {
public static string GetWebFormViewName(this IView view) {
if (view is WebFormView) {
string viewUrl = ((WebFormView)view).ViewPath;
string viewFileName = viewUrl.Substring(viewUrl.LastIndexOf('/'));
string viewFileNameWithoutExtension = Path.GetFileNameWithoutExtension(viewFileName);
return (viewFileNameWithoutExtension);
} else {
throw (new InvalidOperationException("This view is not a WebFormView"));
}
}
}
</code></pre>
<p>which seems to do exactly what I was after. Thanks Phil. :)</p>
http://stackoverflow.com/questions/1275700/asp-net-mvc-strongly-typed-view-with-two-lists-of-same-type/1278855#12788554Answer by Haacked for Asp.Net MVC - Strongly Typed View with Two Lists of Same TypeHaacked2009-08-14T16:31:31Z2009-08-14T16:31:31Z<p>There are two general philosophies to this. The first is to take the approach John Sheehan stanted. You create a custom view model with both lists and pass that to your strongly typed view.</p>
<p>The second is to consider the lists as "ancillary" data and put them in ViewData like jeef3 stated. But, when you render the lists, you use a strongly typed partial.</p>
<pre><code>ViewData["Newest"] = Newest;
ViewData["Popular"] = Popular
</code></pre>
<p>By that I mean in your main view, you'd call RenderPartial(...) but pass in the view data key you used.</p>
<p><% Html.RenderPartial("Newest", ViewData["Newest"]); %></p>
<p>And your partial would look like:</p>
<pre><code><%@ ViewUserControl Inherits="System.Web.Mvc.ViewUserControl<List<Item>>" %>
...
</code></pre>
<p>This gives you strongly typed access to that view data from within your partial.</p>
http://stackoverflow.com/questions/1240057/integrating-automated-web-testing-into-build-process12Integrating Automated Web Testing Into Build ProcessHaacked2009-08-06T16:30:55Z2009-08-12T07:33:26Z
<p>I'm looking for suggestions to improve the process of automating functional testing of a website. Here's what I've tried in the past.</p>
<p>I used to have a test project using <a href="http://watin.sourceforge.net/" rel="nofollow">WATIN</a>. You effectively write what look like "unit tests" and use WATIN to automate a browser to click around your site etc.</p>
<p>Of course, you need a site to be running. So I made the test actually copy the code from my web project to a local directory and started a web server pointing to that directory before any of the tests run.</p>
<p>That way, someone new could simply get latest from our source control and run our build script, and see all the tests run. They could also simply run all the tests from the IDE.</p>
<p>The problem I ran into was that I spent a lot of time maintaining the code to set up the test environment more than the tests. Not to mention that it took a long time to run because of all that copying. Also, I needed to test out various scenarios including installation, meaning I needed to be able to set the database to various initial states.</p>
<p>I was curious on what you've done to automate functional testing to solve some of these issues and still keep it simple.</p>
<p><strong>MORE DETAILS</strong>
Since people asked for more details, here it is. I'm running ASP.NET using Visual Studio and Cassini (the built in web server). My unit tests run in MbUnit (but that's not so important. Could be NUnit or XUnit.NET). Typically, I have a separate unit test framework run all my WATIN tests. In the AssemblyLoad phase, I start the webserver and copy all my web application code locally.</p>
<p>I'm interested in solutions for any platform, but I may need more descriptions on what each thing means. :)</p>
http://stackoverflow.com/questions/1235646/asp-net-mvc-2-html-editorfor-and-custom-editortemplates/1248042#12480421Answer by Haacked for ASP.NET MVC 2 - HTML.EditorFor() and Custom EditorTemplatesHaacked2009-08-08T05:17:45Z2009-08-08T05:17:45Z<p>You can either create a custom ViewModel which has both properties OR you'll need to use ViewData to pass that information in.</p>
http://stackoverflow.com/questions/1238955/check-users-details-in-asp-net-mvc-actionfilter/1248040#12480400Answer by Haacked for Check user's details in ASP.NET MVC ActionFilterHaacked2009-08-08T05:16:43Z2009-08-08T05:16:43Z<p>I would not do it this way. I would implement an <code>IAuthorizationFilter</code>. Authorization filters run before all action filters.</p>
<p>For example, suppose you later put an OutputCache attribute on the action method and it happens to run before your authentication filter. That would be bad! If the content is cached, the authentication filter would never run and people would see cached sensitive data.</p>
http://stackoverflow.com/questions/1239308/asp-net-mvc-views-and-controllers/1248033#12480330Answer by Haacked for asp.net mvc - Views and ControllersHaacked2009-08-08T05:14:04Z2009-08-08T05:14:04Z<p>There are three ways to specify a view name.</p>
<p><strong>By Convention</strong></p>
<pre><code>public ActionResult MyAction {
return View()
}
</code></pre>
<p>That will look for a view with the name of the action method, aka "MyAction.ascx" or "MyAction.aspx"</p>
<p>** By Name **</p>
<pre><code>public ActionResult MyAction {
return View("MyViewName")
}
</code></pre>
<p>This will look for a view named "MyViewName.ascx" or "MyViewName.aspx".</p>
<p>** By application path **</p>
<pre><code>public ActionResult MyAction {
return View("~/AnyFolder/MyViewName.ascx")
}
</code></pre>
<p>This last one only looks in this one place, the place you specified.</p>
http://stackoverflow.com/questions/1797412/dataannotationsComment by Haacked on DataAnnotationsHaacked2009-11-25T18:00:59Z2009-11-25T18:00:59ZWhat is the type of ValidationAttribute? You're passing a lambda into the base ctor but there is no such ctor for DataAnnotations ValidationAttribute.http://stackoverflow.com/questions/1713379/asp-net-mvc-routing-with-default-controller/1778039#1778039Comment by Haacked on ASP.NET MVC Routing with Default ControllerHaacked2009-11-25T17:55:56Z2009-11-25T17:55:56ZUse a constraint, just as Freddy said.http://stackoverflow.com/questions/1661783/minimizing-mvc-memory-consumption-footprintComment by Haacked on Minimizing MVC memory consumption footprintHaacked2009-11-03T06:49:09Z2009-11-03T06:49:09ZMaybe we should be asking you this question. How'd you get it down to 20MB? ;)http://stackoverflow.com/questions/1630048/override-editorformodel-template/1640870#1640870Comment by Haacked on Override EditorForModel TemplateHaacked2009-10-29T23:05:48Z2009-10-29T23:05:48ZIt's the Object template that does that. It iterates through each property of an object and renders those three things. Check out Brad Wilson's series on the topic <a href="http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-1-introduction.html" rel="nofollow">bradwilson.typepad.com/blog/2009/…</a>http://stackoverflow.com/questions/1640102/customize-htmlhelper-validationmessage-output/1640816#1640816Comment by Haacked on Customize HtmlHelper.ValidationMessage outputHaacked2009-10-29T23:01:05Z2009-10-29T23:01:05ZYou'll be able to have any custom HTML markup you want. If you choose this approach, we'll simply toggle the visibility of the message via a CSS class. So yes, you'll be able to do this.http://stackoverflow.com/questions/1640648/net-mvc-custom-routing-with-empty-parametersComment by Haacked on .NET MVC custom routing with empty parametersHaacked2009-10-29T02:58:36Z2009-10-29T02:58:36ZI updated my answer.http://stackoverflow.com/questions/1628872/asp-net-mvc-unbind-action-parameter/1640888#1640888Comment by Haacked on ASP.NET MVC Unbind Action ParameterHaacked2009-10-29T02:53:50Z2009-10-29T02:53:50ZAh, good point. Sorry. I updated the answer with what should work.http://stackoverflow.com/questions/1620178/asp-net-mvc-routing-and-areas/1620540#1620540Comment by Haacked on ASP.NET MVC routing and areasHaacked2009-10-29T00:02:56Z2009-10-29T00:02:56ZThis looks correct to me.http://stackoverflow.com/questions/1640648/net-mvc-custom-routing-with-empty-parametersComment by Haacked on .NET MVC custom routing with empty parametersHaacked2009-10-28T23:29:53Z2009-10-28T23:29:53ZWhat did you expect to happen?
What actually happens?
What does the method look like?http://stackoverflow.com/questions/1511004/having-trouble-deplying-asp-mvc-app-to-normal-shared-hosting-provider/1511172#1511172Comment by Haacked on Having trouble deplying ASP MVC app to normal shared hosting providerHaacked2009-10-02T23:23:44Z2009-10-02T23:23:44Zhtdocs? Isn't that an apache thing? Can you get a normal Web Form page working? If so, write a page that prints out all the server variables.http://stackoverflow.com/questions/31722/anyone-have-a-diff-algorithm-for-rendered-htmlComment by Haacked on Anyone have a diff algorithm for rendered HTML?Haacked2009-10-02T18:37:15Z2009-10-02T18:37:15ZYes, I am the same one. :)http://stackoverflow.com/questions/1278679/asp-net-mvc-returning-data-as-html-or-xmlComment by Haacked on ASP.NET MVC - Returning data as HTML or XMLHaacked2009-08-14T16:24:22Z2009-08-14T16:24:22ZI'll be posting something soon to the ASP.NET CodePlex site <a href="http://aspnet.codeplex.com/" rel="nofollow">aspnet.codeplex.com</a> which will address this scenario. Stay tuned. :) http://stackoverflow.com/questions/1240775/asp-net-mvc-route-key-words/1241562#1241562Comment by Haacked on ASP.NET MVC Route Key WordsHaacked2009-08-08T05:10:21Z2009-08-08T05:10:21ZBy the way, Levi is a developer on the ASP.NET MVC team, so he knows what he's talking about. :)http://stackoverflow.com/questions/1240775/asp-net-mvc-route-key-words/1241562#1241562Comment by Haacked on ASP.NET MVC Route Key WordsHaacked2009-08-08T05:07:46Z2009-08-08T05:07:46ZIn ASP.NET 4, many of those URL limitations imposed by ASP.NET (such as "COM1") will go away. Those are not limitations imposed on routing as Levi said.http://stackoverflow.com/questions/1246604/map-a-route-to-the-same-controller-action/1246622#1246622Comment by Haacked on Map a route to the same controller actionHaacked2009-08-07T23:39:12Z2009-08-07T23:39:12ZDon't forget that the controller value is the type name of the controller sans "Controller". So if you have "FooController" then the route should have new {Controller="Foo", Action = "ActionMethodName"}