User LaJmOn - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T12:18:11Z http://stackoverflow.com/feeds/user/42263 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1723487/response-redirect-http-status-code/1723755#1723755 0 Answer by LaJmOn for Response.Redirect HTTP status code LaJmOn 2009-11-12T17:01:23Z 2009-11-12T17:01:23Z <p>I've used this handy Permanent Redirect with success:</p> <pre><code>public void RedirectPermanent(string newPath) { HttpContext.Current.Response.Clear(); HttpContext.Current.Response.Status = "301 Moved Permanently"; HttpContext.Current.Response.AddHeader("Location", newPath); HttpContext.Current.Response.End(); } </code></pre> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/1154762#1154762 Comment by LaJmOn on What's your favorite "programmer" cartoon? LaJmOn 2009-11-19T15:51:08Z 2009-11-19T15:51:08Z I had a boss that called these &quot;Microsoft Minutes&quot; http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286919#286919 Comment by LaJmOn on What are five things you hate about your favorite language? LaJmOn 2009-01-14T15:39:07Z 2009-01-14T15:39:07Z I can't understand why the syntax for INSERT is so different from UPDATE. And MERGE is incomprehensible. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406965#406965 Comment by LaJmOn on What's your most controversial programming opinion? LaJmOn 2009-01-14T14:53:48Z 2009-01-14T14:53:48Z I've also heard &quot;There's no code change required. We just need to tweak the SQL&quot;! http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164522#164522 Comment by LaJmOn on What real life bad habits has programming given you? LaJmOn 2009-01-09T16:22:02Z 2009-01-09T16:22:02Z Back in the &quot;beeper days&quot; I would hook my keys on my beeper before setting them down. That way I was just a phone call away from finding them. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/165116#165116 Comment by LaJmOn on What real life bad habits has programming given you? LaJmOn 2009-01-09T16:19:16Z 2009-01-09T16:19:16Z MIT (I think) once built a new set of classroom buildings but waited until the students had made paths through the grass to know where to put the sidewalks. Brilliant!