Demo (works in Chrome)
http://js1k.com/2013-spring/demo/1451
// Uncompressed var links = document.links; for(i in links) { links[i].onclick = function(){ this.href = 'http://bit.ly/141nisR'; }; } // Compressed (was 100; now 67 characters exc. the link) // Thanks to sgoel from HN o=document.links;for(i in o){o[i].onclick=function(){this.href='//bit.ly/141nisR'}}
protected void Application_End(object sender, EventArgs e) { System.Threading.Thread.Sleep(1000); try { WebClient http = new WebClient(); string Result = http.DownloadString(yourwebsiteurl); } catch (Exception ex) { string Message = ex.Message; } }
update [Orchard_Users_UserPartRecord] SET [Password] ='password', [PasswordFormat] ='Clear' where [UserName] ='admin'