User Sam Wessel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:10:34Z http://stackoverflow.com/feeds/user/4734 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1261423/how-can-i-provide-a-textbox-that-filters-results-in-real-time-using-asp-net-mvc-a/1261516#1261516 1 Answer by Sam Wessel for How can I provide a textbox that filters results in real time using ASP.NET MVC and jQuery (NOT autocomplete)? Sam Wessel 2009-08-11T16:32:37Z 2009-08-11T19:40:10Z <p>You basically need an ajax call made each time the value of the textbox changes.</p> <p>Totally untested, but something along the lines of:</p> <pre><code>$("#inputName").change(function () { // maybe check the value is more than n chars or whatever $.ajax({ url: &lt;%= Url.Action("Lookup", "Users") %&gt; + '/' + this.val(), // path to ajax request dataType: "html", // probably success: updateContainerWithResults }); }); function updateContainerWithResults(data) { $("#resultsContainerElement").html(data); } </code></pre> <p><a href="http://docs.jquery.com/Events/change" rel="nofollow">http://docs.jquery.com/Events/change</a></p> <p><a href="http://docs.jquery.com/Ajax" rel="nofollow">http://docs.jquery.com/Ajax</a></p> http://stackoverflow.com/questions/1255726/href-dont-scroll/1255765#1255765 1 Answer by Sam Wessel for Href="#" Don't Scroll Sam Wessel 2009-08-10T16:06:10Z 2009-08-10T16:06:10Z <pre><code>&lt;a href="javascript:void(0);" class="closeLink"&gt;Close&lt;/a&gt; </code></pre> <p>I've never been a fan of # for links you don't want to go anywhere. Plus this way you don't have modify your javascript method.</p> http://stackoverflow.com/questions/1255472/how-does-a-multiple-select-list-work-with-model-binding-in-asp-net-mvc/1255595#1255595 2 Answer by Sam Wessel for How does a multiple select list work with model binding in ASP.NET MVC? Sam Wessel 2009-08-10T15:34:36Z 2009-08-10T15:34:36Z <p>Yes, by default a multiselectlist will post through an array of the selected values.</p> <p><a href="http://ittecture.wordpress.com/2009/04/30/tip-of-the-day-198-asp-net-mvc-listbox-controls/" rel="nofollow">This article</a> has further information, including how to use strongly-typed views with a multiselectlist. </p> http://stackoverflow.com/questions/1255435/getting-objects-to-stay-in-a-scriptaculous-droppable/1255551#1255551 1 Answer by Sam Wessel for Getting objects to stay in a scriptaculous droppable. Sam Wessel 2009-08-10T15:25:51Z 2009-08-10T15:25:51Z <p>You are missing a closing quote on the end of this line:</p> <pre><code>newnode.setAttribute("className", 'classname); </code></pre> <p>If there's still a problem, I suggest you try debugging the script using <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> to see which line causes an error.</p> http://stackoverflow.com/questions/1255148/how-can-i-make-my-web-page-not-be-copied/1255206#1255206 19 Answer by Sam Wessel for How can I make my web page not be copied? Sam Wessel 2009-08-10T14:26:34Z 2009-08-10T14:26:34Z <p>Consider rethinking whether you really need to do this.</p> <p>The internet is for sharing.</p> http://stackoverflow.com/questions/1254939/firefox-redownloading-background-image-for-each-class/1254991#1254991 1 Answer by Sam Wessel for Firefox redownloading background-image for each class? Sam Wessel 2009-08-10T13:46:26Z 2009-08-10T13:46:26Z <p>Just a guess, but could you try putting the background property into just 1 css class instead of 50? This would at least get rid of repetition in your css, and may explain why FF isn't making just 1 request. </p> <p>Of course you can add multiple classes to your divs so that they can still keep the other seperate styles e.g.</p> <pre><code>.myBackground { background:#000 url(curve_red/circle.png) no-repeat 0 0; } .class1 { color: blue; } .class2 { color: red; } </code></pre> <p>and then in your html:</p> <pre><code>&lt;div class="class1 myBackground"&gt;blue div&lt;/div&gt; &lt;div class="class2 myBackground"&gt;red div&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/877149/what-activity-should-be-on-every-programmers-daily-list/1254947#1254947 0 Answer by Sam Wessel for What activity should be on every programmer's daily list? Sam Wessel 2009-08-10T13:38:24Z 2009-08-10T13:38:24Z <p>Learn something new.</p> <p>If you mark down one thing you learned each day, it's interesting to read through them all at the end of each month.</p> http://stackoverflow.com/questions/1252906/javascript-how-to-create-a-rounded-corner-tab-menu/1254734#1254734 1 Answer by Sam Wessel for Javascript: How to create a rounded corner tab menu? Sam Wessel 2009-08-10T12:58:07Z 2009-08-10T12:58:07Z <p>Not yet supported by all browsers, but you can use CSS3 to easily display rounded corners without the need for images or javascript:</p> <pre><code>&lt;div style="-moz-border-radius: 5px; -webkit-border-radius: 5px;"&gt; Rounded corners! &lt;/div&gt; </code></pre> <p>More info: <a href="http://www.css3.info/preview/rounded-border" rel="nofollow">http://www.css3.info/preview/rounded-border</a></p> <p>This should allow for graceful degradation in older browsers (just won't show as rounded), but I'd still be inclined to go with images if you want to ensure all your users have the same experience.</p> http://stackoverflow.com/questions/1197908/better-to-have-huge-controllers-or-many-controllers-in-mvc/1198726#1198726 6 Answer by Sam Wessel for Better to have huge Controllers, or many controllers, in MVC? Sam Wessel 2009-07-29T08:16:19Z 2009-07-29T08:16:19Z <p><a href="http://msdn.microsoft.com/en-us/library/wa80x488%28VS.80%29.aspx" rel="nofollow">Partial classes</a> allow you to spread your class across multiple files. That way you can group relevant areas of your controller into separate files, and yet they'll all still be part of the same controller. e.g.</p> <p><em>EmployeeDeductionController.cs</em></p> <pre><code>public partial class EmployeeController { public ActionResult Deduct() { } // etc } </code></pre> <p><em>EmployeeBenefitController.cs</em></p> <pre><code>public partial class EmployeeController { public ActionResult GiveBenefit() { } // etc } </code></pre> http://stackoverflow.com/questions/1188770/is-it-time-to-start-developing-with-html5/1188958#1188958 2 Answer by Sam Wessel for Is it time to start developing with HTML5? Sam Wessel 2009-07-27T15:48:10Z 2009-07-27T15:48:10Z <p>Assess your target audience. Are they likely to be early-adopters? Is it critical that all visitors to your site are catered for? Or will a few not mind being met with an inconvenient, yet polite "please upgrade your browser" message?</p> <p>For <strong>business sites</strong> I'd say no. Not yet, anyway. You probably can't afford to lose users of older browsers.</p> <p>For a <strong>personal website or project</strong>, why not? It'll be great experience learning the latest HTML5 features, and you'll be ahead of the curve when it does become mainstream. Besides, more people writing sites conforming to HTML5 means more pressure on users of older browsers to upgrade, benefitting all of us in the long run.</p> http://stackoverflow.com/questions/1164251/ajax-beginform-not-hiding-loading-element-when-onbegin-fails 0 Ajax.BeginForm not hiding loading element when onBegin fails Sam Wessel 2009-07-22T10:06:10Z 2009-07-22T10:11:13Z <p>I'm using the Ajax.BeginForm helper in my MVC app. Here's a simplified example:</p> <pre><code> &lt;% using (Ajax.BeginForm("actionName", new { Controller = "controller" }, new AjaxOptions { OnBegin = "doValidation", LoadingElementId = "ajaxLoader" })) { %&gt; </code></pre> <p>The problem is that if the OnBegin callback returns false, which correctly prevents the ajax call from being made, the loading element "ajaxLoader" is still displayed, and not hidden.</p> <p>I've tried using the OnFailure and OnComplete callbacks, but neither of these are called if the OnBegin callback fails.</p> <p>Interestingly the loading element is not displayed until <em>after</em> the OnBegin function has returned.</p> <p>I can get around this by explicitly showing and hiding the ajax loading element in custom javascript functions, but this seems like something the helper should really take care of for me.</p> http://stackoverflow.com/questions/944601/load-file-after-page-is-complete-without-redirecting/949946#949946 1 Answer by Sam Wessel for Load file after page is complete without redirecting Sam Wessel 2009-06-04T11:26:43Z 2009-06-04T11:26:43Z <p>You can create your own PdfResult which extends ActionResult like this:</p> <pre><code>public class PdfResult : ActionResult { public byte[] Content { get; set; } public string FileName { get; set; } public override void ExecuteResult(ControllerContext context) { var response = context.HttpContext.Response; response.AddHeader("content-disposition", "attachment; filename=" + this.FileName); response.AddHeader("content-length", this.Content.Length.ToString()); response.ContentType = "application/pdf"; using (MemoryStream memoryStream = new MemoryStream(this.Content)) { memoryStream.WriteTo(response.OutputStream); } response.End(); } </code></pre> <p>Then in your action you can simply return the file as follows:</p> <pre><code> public ActionResult Pdf(string param1...) { var content = GeneratePdf(); //etc var fileName = AssignFileName(); return new PdfResult { Content = content, FileName = fileName + ".pdf" }; } </code></pre> http://stackoverflow.com/questions/949705/why-is-my-page-loading-slow/949723#949723 6 Answer by Sam Wessel for Why is my page loading slow Sam Wessel 2009-06-04T10:27:40Z 2009-06-04T10:39:29Z <p>Using the Net tab of Firebug should show you which requests are taking the longest to load. See <a href="http://getfirebug.com/net.html" rel="nofollow">this page</a> for a more detailed guide to using this information.</p> <p>You could also use the <a href="http://developer.yahoo.com/yslow/" rel="nofollow">YSlow</a> addon for Firebug to identify other ways you could improve the loading time of your page.</p> http://stackoverflow.com/questions/922997/asp-net-mvc-resolve-urls-in-javascript/925676#925676 0 Answer by Sam Wessel for ASP.NET MVC resolve urls in javascript Sam Wessel 2009-05-29T12:05:08Z 2009-05-29T12:05:08Z <p>A couple of ways we do this in our apps:</p> <pre><code> var applicationPath = '&lt;%= Url.Content("~/") %&gt;'; </code></pre> <p>OR</p> <pre><code> var applicationPath = '&lt;%= Request.Url.Scheme %&gt;://&lt;%= Request.Url.Host %&gt;&lt;%= Request.ApplicationPath %&gt;/'; </code></pre> <p>We then use applicationPath as the base url for all our ajax calls.</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/921750#921750 28 Answer by Sam Wessel for Worst UI You've Ever Used Sam Wessel 2009-05-28T16:12:11Z 2009-05-28T16:12:11Z <p>Forms that clear all the inputs when there was a minor validation problem in one of them</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/921740#921740 20 Answer by Sam Wessel for Worst UI You've Ever Used Sam Wessel 2009-05-28T16:10:35Z 2009-05-28T16:10:35Z <p>Disabling right-click on a web page. Especially when coupled with a javascript alert to tell you it's been disabled.</p> http://stackoverflow.com/questions/906269/redirect-to-page-when-not-paid/909873#909873 1 Answer by Sam Wessel for Redirect to Page when not paid Sam Wessel 2009-05-26T09:51:28Z 2009-05-27T08:15:23Z <p>Create a custom actionFilterAttribute like so (this example works from having your item stored in the session, but you could modify this as required):</p> <pre><code>public abstract class RequiresPaymentAttribute : ActionFilterAttribute { protected bool ItemHasBeenPaidFor(Item item) { // insert your check here } private ActionExecutingContext actionContext; public override void OnActionExecuting(ActionExecutingContext actionContext) { this.actionContext = actionContext; if (ItemHasBeenPaidFor(GetItemFromSession())) { // Carry on with the request base.OnActionExecuting(actionContext); } else { // Redirect to a payment required action actionContext.Result = CreatePaymentRequiredViewResult(); actionContext.HttpContext.Response.Clear(); } } private User GetItemFromSession() { return (Item)actionContext.HttpContext.Session["ItemSessionKey"]; } private ActionResult CreatePaymentRequiredViewResult() { return new MyController().RedirectToAction("Required", "Payment"); } } </code></pre> <p>Then you can simply add an attribute to all controller actions that require this check:</p> <pre><code>public class MyController: Controller { public RedirectToRouteResult RedirectToAction(string action, string controller) { return RedirectToAction(action, controller); } [RequiresPayment] public ActionResult Index() { // etc </code></pre> http://stackoverflow.com/questions/910080/jquery-delayed-css-div-position/910126#910126 1 Answer by Sam Wessel for Jquery delayed css div position Sam Wessel 2009-05-26T11:00:53Z 2009-05-26T11:00:53Z <p>Unfortunately jQuery doesn't have a delay function. However, you can use a sneaky and not-too-dirty hack to simulate a delay, by animating the opacity of an element from 1 to 1:</p> <pre><code>$('#visibleElement') // Assuming the element is already shown .animate({opacity: 1.0}, 3000); // do nothing for 3 seconds </code></pre> <p>So to slide up your menu 5 seconds after the mouse leaves you could do the following:</p> <pre><code>$('#menuDiv').mouseout(function(){ .animate({opacity: 1.0}, 5000) .animate( slide up etc... }); </code></pre> http://stackoverflow.com/questions/909955/jquery-ie-jerky-slide-animation/909994#909994 0 Answer by Sam Wessel for JQuery IE jerky slide animation Sam Wessel 2009-05-26T10:27:03Z 2009-05-26T10:27:03Z <p>Wrap the div inside another div. Add the padding/margin to the inner div, and call the animation on the outer div.</p> <pre><code>&lt;div class="details"&gt; &lt;div class="hasMargins"&gt; &lt;p&gt;Date&lt;/p&gt; &lt;p&gt;Text&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/632964/can-i-specify-a-custom-location-to-search-for-views-in-asp-net-mvc/909594#909594 2 Answer by Sam Wessel for Can I specify a custom location to "search for views" in ASP.NET MVC? Sam Wessel 2009-05-26T08:30:21Z 2009-05-26T08:30:21Z <p>You can easily extend the WebFormViewEngine to specify all the locations you want to look in:</p> <pre><code>public class CustomViewEngine : WebFormViewEngine { public CustomViewEngine() { var viewLocations = new[] { "~/Views/{1}/{0}.aspx", "~/Views/{1}/{0}.ascx", "~/Views/Shared/{0}.aspx", "~/Views/Shared/{0}.ascx", "~/AnotherPath/Views/{0}.ascx" // etc }; this.PartialViewLocationFormats = viewLocations; this.ViewLocationFormats = viewLocations; } } </code></pre> <p>Make sure you remember to register the view engine by modifying the Application_Start method in you Global.asax.cs</p> <pre><code> protected void Application_Start() { ViewEngines.Engines.Clear(); ViewEngines.Engines.Add(new CustomViewEngine()); } </code></pre> http://stackoverflow.com/questions/127687/favorite-net-unit-testing-framework/128281#128281 4 Answer by Sam Wessel for Favorite .NET Unit Testing framework Sam Wessel 2008-09-24T16:43:03Z 2009-04-23T14:19:21Z <p><strong><a href="http://www.gallio.org/" rel="nofollow">Gallio</a></strong> looks like it's going to be awesome once it gets more stable (currently alpha).</p> <p>It's not just a test framework, but a test automation platform, so it will work with many existing test frameworks (MbUnit, NUnit, xUnit.net) yet be fully extensible, with a number of built-in additional features such as report generation in many formats and code analysis tools. </p> <p>I've also heard that it will be able to </p> <ul> <li>output image streams, so for example WatiN test failures can be output as screenshots, so you can see what state the browser was in when the test failed.</li> <li>filter by namespace, so you can easily uncheck tests for an entire namespace before running them</li> </ul> <p>Edit: It is indeed out of alpha now. We've tried it at our company and we really hated it. It was horrible to use and very slow. What a shame.</p> http://stackoverflow.com/questions/114108/asp-net-mvc-preview-5-html-image-helper-has-moved-namespace 3 ASP.NET MVC Preview 5 - Html.Image helper has moved namespace Sam Wessel 2008-09-22T10:10:24Z 2009-04-21T04:54:42Z <p>We've just updated ASP.NET from Preview 3 to Preview 5 and we've run into a problem with the <code>Html.Image</code> HtmlHelper in our aspx pages.</p> <p>It seems that <code>Html.Image</code> has moved from <code>System.Web.Mvc</code> into <code>Microsoft.Web.Mvc</code>, and the only way we've found to access the helper now is to add an import statement to every .aspx page that uses it. All the other helpers can be accessed with <code>using System.Web.Mvc;</code> in the C# codebehind of a view master page, but this one seems to need an <code>&lt;@Import Namespace="Microsoft.Web.Mvc"&gt;</code> in every .aspx page.</p> <p>Does anyone know of a way around this?</p> http://stackoverflow.com/questions/709207/google-chrome-breaks-when-onfocus-sets-select-size 2 Google Chrome breaks when onfocus sets select size Sam Wessel 2009-04-02T10:37:03Z 2009-04-02T11:54:39Z <p>The following javascript to resize a select list breaks in Google Chrome. It works when tabbing into the field, but clicking on it results in the "Aw, Snap!" error page.</p> <pre><code>&lt;select onfocus="this.setAttribute('size', 3);"&gt; &lt;option&gt;selectList with onfocus&lt;/option&gt; &lt;option&gt;2&lt;/option&gt; &lt;option&gt;3&lt;/option&gt; &lt;option&gt;4&lt;/option&gt; &lt;/select&gt; </code></pre> <p>Works fine in FF and IE. It's some kind of conflict between onfocus (there's no problems if I implement it onClick) and setting the size attribute. I'm told it breaks in Safari too.</p> <p>Any assistance, ideas or workarounds are greatly appreciated.</p> <p>(P.S. Yeh I know it's not very nice form to resize a select list, but it's what the boss/client wants)</p> http://stackoverflow.com/questions/57762/step-by-step-asp-net-automated-build-deploy/59307#59307 3 Answer by Sam Wessel for Step-By-Step ASP.NET Automated Build/Deploy Sam Wessel 2008-09-12T15:29:35Z 2009-02-25T08:56:44Z <p>I recently spent a few days working on automating deployments at my company.</p> <p>We use a combination of CruiseControl, NAnt, MSBuild to generate a release version of the app. Then a separate script uses MSDeploy and XCopy to backup the live site and transfer the new files over.</p> <p>Our solution is briefly described in an answer to this question <a href="http://stackoverflow.com/questions/45783/automate-deployment-for-web-applications">http://stackoverflow.com/questions/45783/automate-deployment-for-web-applications</a></p> http://stackoverflow.com/questions/528545/mvc-datetime-binding-with-incorrect-date-format 7 MVC DateTime binding with incorrect date format Sam Wessel 2009-02-09T15:14:05Z 2009-02-15T03:40:59Z <p>Asp.net-MVC now allows for implicit binding of DateTime objects. I have an action along the lines of</p> <pre><code>public ActionResult DoSomething(DateTime startDate) { ... }</code></pre> <p>This successfully converts a string from an ajax call into a DateTime. However, we use the date format dd/MM/yyyy; MVC is converting to MM/dd/yyyy. For example, submitting a call to the action with a string '09/02/2009' results in a DateTime of '02/09/2009 00:00:00', or September 2nd in our local settings.</p> <p>I don't want to roll my own model binder for the sake of a date format. But it seems needless to have to change the action to accept a string and then use DateTime.Parse if MVC is capable of doing this for me.</p> <p>Is there any way to alter the date format used in the default model binder for DateTime? Shouldn't the default model binder use your localisation settings anyway?</p> http://stackoverflow.com/questions/528545/mvc-datetime-binding-with-incorrect-date-format/528560#528560 11 Answer by Sam Wessel for MVC DateTime binding with incorrect date format Sam Wessel 2009-02-09T15:18:49Z 2009-02-09T15:18:49Z <p>I've just found the answer to this with some more exhaustive googling:</p> <p>Melvyn Harbour has a thorough explanation of why MVC works with dates the way it does, and how you can override this if necessary:</p> <p><a href="http://weblogs.asp.net/melvynharbour/archive/2008/11/21/mvc-modelbinder-and-localization.aspx" rel="nofollow">http://weblogs.asp.net/melvynharbour/archive/2008/11/21/mvc-modelbinder-and-localization.aspx</a></p> <p>When looking for the value to parse, the framework looks in a specific order namely:</p> <ol> <li>RouteData (not shown above)</li> <li>URI query string</li> <li>Request form</li> </ol> <p>Only the last of these will be culture aware however. There is a very good reason for this, from a localization perspective. Imagine that I have written a web application showing airline flight information that I publish online. I look up flights on a certain date by clicking on a link for that day (perhaps something like <a href="http://www.melsflighttimes.com/Flights/2008-11-21" rel="nofollow">http://www.melsflighttimes.com/Flights/2008-11-21</a>), and then want to email that link to my colleague in the US. The only way that we could guarantee that we will both be looking at the same page of data is if the InvariantCulture is used. By contrast, if I'm using a form to book my flight, everything is happening in a tight cycle. The data can respect the CurrentCulture when it is written to the form, and so needs to respect it when coming back from the form.</p> http://stackoverflow.com/questions/70846/developers-bill-of-rights 22 Developers' Bill Of Rights Sam Wessel 2008-09-16T09:53:37Z 2009-01-01T19:28:16Z <p>We're fortunate in our company to each have 2 decent-sized monitors and reasonably fast machines. This alone is enough to impress many of my peers who are stuck working with poor equipment. But should things like this really be seen as a luxury? What about a quiet working environment? Should this be guaranteed? How about comfy chairs?</p> <p><strong>What should developers expect to be provided with in order to be productive and successful?</strong></p> <p>1 suggestion per answer please, to help individual "rights" bubble to the top :)</p> http://stackoverflow.com/questions/187391/watin-test-using-ie-getcookie-failing-only-from-cruisecontrol 1 WatiN test using IE.GetCookie failing only from CruiseControl Sam Wessel 2008-10-09T14:01:08Z 2008-11-05T20:05:55Z <p>I added some simple WatiN tests to our app today to check that a cookie value is stored correctly.</p> <p>The tests pass locally on all machines in the team. However, when CruiseControl runs the tests on our Build server these new tests fail on the line containing</p> <p><code>browser.GetCookie(url, cookieName)</code></p> <p>The error given in the CruiseControl log is the old chestnut of:</p> <p><code>Object reference not set to an instance of an object.</code></p> <p>I have logged on to the Build server with Remote Desktop, using the same user account that CruiseControl runs under, and run MbUnit manually, and the tests pass. So it can't be a problem with the permissions on the Build server to access cookies.</p> <p>I have looked through all the WatiN documentation for help, but come up empty. I've restarted the CruiseControl service. I've tried everything I can think of and I'm now completely at a loss now as to what could be different in the way Cruise Control runs these tests.</p> <p>Does anybody know what could be causing this and/or how to resolve it?</p> http://stackoverflow.com/questions/212718/when-do-i-use-the-testfixturesetup-attribute-instead-of-a-default-constructor/212769#212769 1 Answer by Sam Wessel for When do I use the TestFixtureSetUp attribute instead of a default constructor? Sam Wessel 2008-10-17T16:02:41Z 2008-10-17T16:02:41Z <p>Why would you need to use a constructor in your test classes?</p> <p>I use <strong>[SetUp]</strong> and <strong>[TearDown]</strong> marked methods for code to be executed before and after each test, and similarly <strong>[TestFixtureSetUp]</strong> and <strong>[TestFixtureTearDown]</strong> marked methods for code to be executed only once before and after all test in the fixture have been run.</p> <p>I guess you could probably substitute the <strong>[TestFixtureSetUp]</strong> for a constructor (although I haven't tried), but this only seems to break from the clear convention that the marked methods provide.</p> http://stackoverflow.com/questions/166174/how-can-i-convert-listobject-to-hashtable-in-c 12 How can I convert List<object> to Hashtable in C#? Sam Wessel 2008-10-03T10:04:30Z 2008-10-15T12:50:23Z <p>I have a list of objects, each containing an Id, Code and Description.</p> <p>I need to convert this list into a Hashtable, using <strong>Description</strong> as the key and <strong>Id</strong> as the value.</p> <p>This is so the Hashtable can then be serialised to JSON.</p> <p>Is there a way to convert from List&lt;Object&gt; to Hashtable without writing a loop to go through each item in the list?</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114771#114771 Comment by Sam Wessel on What are Code Smells? What is the best way to correct them? Sam Wessel 2009-09-01T13:19:47Z 2009-09-01T13:19:47Z It was our company's Smell Of The Week when this question was asked, and I took the definition from our whiteboard, which was probably taken from a textbook. http://stackoverflow.com/questions/1300366/meaning-of-the-lulz-in-comments Comment by Sam Wessel on meaning of "the lulz" in comments? Sam Wessel 2009-08-19T14:32:08Z 2009-08-19T14:32:08Z This question delivers http://stackoverflow.com/questions/1255435/getting-objects-to-stay-in-a-scriptaculous-droppable/1255551#1255551 Comment by Sam Wessel on Getting objects to stay in a scriptaculous droppable. Sam Wessel 2009-08-11T13:05:30Z 2009-08-11T13:05:30Z Chris, you are most welcome. I have felt the pain of haslayout on many occasions and am only too happy I could be of assistance. http://stackoverflow.com/questions/1255435/getting-objects-to-stay-in-a-scriptaculous-droppable/1255551#1255551 Comment by Sam Wessel on Getting objects to stay in a scriptaculous droppable. Sam Wessel 2009-08-11T09:31:36Z 2009-08-11T09:31:36Z It throws &quot;object required&quot; errors in IE7/8 as well, at line 361 in effects.js - this is a check for IE haslayout issues. Looks like a scriptaculous bug with IE. Try commenting out lines 361 &amp; 362, and making sure the elements have layout <a href="http://haslayout.net/haslayout" rel="nofollow">haslayout.net/haslayout</a> so you don't need that check. http://stackoverflow.com/questions/1255435/getting-objects-to-stay-in-a-scriptaculous-droppable/1255551#1255551 Comment by Sam Wessel on Getting objects to stay in a scriptaculous droppable. Sam Wessel 2009-08-10T18:53:46Z 2009-08-10T18:53:46Z Do you have a link to this online? It's hard to tell without the full code and implementation. http://stackoverflow.com/questions/1255435/getting-objects-to-stay-in-a-scriptaculous-droppable/1255551#1255551 Comment by Sam Wessel on Getting objects to stay in a scriptaculous droppable. Sam Wessel 2009-08-10T15:53:10Z 2009-08-10T15:53:10Z Don't feel dumb... I only spotted it thanks to StackOverflow's syntax highlighting! We all work in wtf/min around here :) (feel free to drop me an upvote though) http://stackoverflow.com/questions/1255148/how-can-i-make-my-web-page-not-be-copied/1255206#1255206 Comment by Sam Wessel on How can I make my web page not be copied? Sam Wessel 2009-08-10T15:27:38Z 2009-08-10T15:27:38Z A good point Chris, but even my online banking lets me take screenshots, print or copy the page if I want to. http://stackoverflow.com/questions/1248183/how-can-i-use-html-checkbox-to-delete-repeating-groups-in-asp-net-mvc/1248399#1248399 Comment by Sam Wessel on How can I use Html.Checkbox to delete repeating groups in ASP.NET MVC? Sam Wessel 2009-08-08T09:32:04Z 2009-08-08T09:32:04Z This is a strategy I have used in the past. It's a shame that a few of MVC's helpers seem to make things more complicated. http://stackoverflow.com/questions/1245549/generating-a-class-from-an-object-javascript/1245609#1245609 Comment by Sam Wessel on Generating a class from an object (JavaScript) Sam Wessel 2009-08-08T09:17:32Z 2009-08-08T09:17:32Z My mistake - it is indeed prototype. I mistook the question from seeing 'prototype' in his example http://stackoverflow.com/questions/1206062/net-code-refactorings-what-is-your-best-practice Comment by Sam Wessel on .NET Code refactorings, what is your best practice? Sam Wessel 2009-07-30T11:51:52Z 2009-07-30T11:51:52Z What do you actually want to know? Common smells? Anti-patterns? Refactoring tools? Your question is very vague. http://stackoverflow.com/questions/1164251/ajax-beginform-not-hiding-loading-element-when-onbegin-fails/1164268#1164268 Comment by Sam Wessel on Ajax.BeginForm not hiding loading element when onBegin fails Sam Wessel 2009-07-22T13:37:54Z 2009-07-22T13:37:54Z The helper is supposed to do that. Otherwise what is the point of having the loadingElementId option, if it is not compatible with all the callbacks? Seems to me like a bug/shortcoming in the ajax helper. Shame. http://stackoverflow.com/questions/1164251/ajax-beginform-not-hiding-loading-element-when-onbegin-fails/1164268#1164268 Comment by Sam Wessel on Ajax.BeginForm not hiding loading element when onBegin fails Sam Wessel 2009-07-22T10:32:56Z 2009-07-22T10:32:56Z This is pretty much what I am having to do. I was just wondering if anyone knew why the helper was not doing this for me. http://stackoverflow.com/questions/58640/great-programming-quotes/59373#59373 Comment by Sam Wessel on Great programming quotes Sam Wessel 2009-07-21T15:32:24Z 2009-07-21T15:32:24Z If you have to ask, you'll never know http://stackoverflow.com/questions/949705/why-is-my-page-loading-slow/949723#949723 Comment by Sam Wessel on Why is my page loading slow Sam Wessel 2009-06-04T11:54:03Z 2009-06-04T11:54:03Z Musa, I'm not aware of any standard in place, but YSlow's grades have always been a useful benchmark for me. Be aware that they are quite strict though - often C or above is a good mark. http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/81710#81710 Comment by Sam Wessel on What's Your Motto As A Developer/Programmer? Sam Wessel 2009-05-29T12:38:46Z 2009-05-29T12:38:46Z +1. Bonus: Red; Green; Commit; Refactor; Commit;