Mean: soft stack overflow
If hapends in IIS server, check code related to the permision
Friday, March 22, 2013
Thursday, March 21, 2013
Wednesday, March 20, 2013
Hacking the HTML a tag in 100 characters
http://bilaw.al/2013/03/17/hacking-the-a-tag-in-100-characters.html
// 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'}}
Tuesday, March 19, 2013
Monday, March 18, 2013
Why session expired so fast in ASP.NET?
A lot of reasons, check following list for detail:
http://blogs.msdn.com/b/johan/archive/2007/05/16/common-reasons-why-your-application-pool-may-unexpectedly-recycle.aspx
http://blogs.msdn.com/b/johan/archive/2007/05/16/common-reasons-why-your-application-pool-may-unexpectedly-recycle.aspx
Subscribe to:
Posts (Atom)