User LaJmOn - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T12:18:11Zhttp://stackoverflow.com/feeds/user/42263http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1723487/response-redirect-http-status-code/1723755#17237550Answer by LaJmOn for Response.Redirect HTTP status codeLaJmOn2009-11-12T17:01:23Z2009-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#1154762Comment by LaJmOn on What's your favorite "programmer" cartoon?LaJmOn2009-11-19T15:51:08Z2009-11-19T15:51:08ZI had a boss that called these "Microsoft Minutes"http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/286919#286919Comment by LaJmOn on What are five things you hate about your favorite language?LaJmOn2009-01-14T15:39:07Z2009-01-14T15:39:07ZI 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#406965Comment by LaJmOn on What's your most controversial programming opinion?LaJmOn2009-01-14T14:53:48Z2009-01-14T14:53:48ZI've also heard "There's no code change required. We just need to tweak the SQL"!http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164522#164522Comment by LaJmOn on What real life bad habits has programming given you?LaJmOn2009-01-09T16:22:02Z2009-01-09T16:22:02ZBack in the "beeper days" 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#165116Comment by LaJmOn on What real life bad habits has programming given you?LaJmOn2009-01-09T16:19:16Z2009-01-09T16:19:16ZMIT (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!