December 2010
8 posts
A Scam I Say! →
Dec 29th
2 tags
Javascript code snippet for removing item from...
/* Snippet for removing value from javascript array. */ Array.prototype.remove = function() { var what, a = arguments, L = a.length, ax; while(L && this.length){ what = a[--L]; while((ax= this.indexOf(what))!= -1){ this.splice(ax, 1); } } return this; }
Dec 27th
1 tag
Dec 26th
1 tag
Dec 21st
1 note
Anonymous asked: Hi,

Thank you very much for sharing this info. I had the same problem after implementing a custom membership provider and login page & web part, I was receiving ‘Exception … ArgumentException … encodedValue’ error message when signining out. By following the approach you've suggested, create a custom sign out page with the above code, it works.
Dec 20th
5 tags
My chrome extension game →
Dec 9th
1 note
5 tags
Dec 9th