December 2010
8 posts
A Scam I Say! →
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;
}
1 tag
1 tag
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.
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.
5 tags
My chrome extension game →
5 tags