Error An error has occured at http://www.cameojewelrysupply.com/Scrip ... 3642819121 Exception has been thrown by the target of an invocation.; Padding is invalid and cannot be removed.
Thanks
What does this error message mean?
-
- Commander (CMDR)
- Posts: 182
- Joined: Tue Jan 27, 2009 2:29 pm
-
- Lieutenant, Jr. Grade (LT JG)
- Posts: 50
- Joined: Mon Jul 02, 2007 9:37 pm
- Location: Chicago, IL
- Contact:
Re: What does this error message mean?
It is kind of hard to tell what the issue is with out seeing the code. Have you been changing/adding inline styles to that page recently?
Re: What does this error message mean?
If consistent and frequent, likely a web farm/machine key issue (http://blog.aproductofsociety.org/?p=11).
If infrequent, it may be a by-product of a spider or crawler accessing the site with a cached version of a page in which the .axd has expired - the decryption key is invalidated, and that's what is throwing the error (http://forums.asp.net/t/1019434.aspx).
If infrequent, it may be a by-product of a spider or crawler accessing the site with a cached version of a page in which the .axd has expired - the decryption key is invalidated, and that's what is throwing the error (http://forums.asp.net/t/1019434.aspx).
Nick Cole
http://www.ethofy.com
http://www.ethofy.com
-
- Commander (CMDR)
- Posts: 182
- Joined: Tue Jan 27, 2009 2:29 pm
Re: What does this error message mean?
I do not know what "inline styles are so I have to say no to that. Yes these are consistant errors a bunch of them seem to be generated, often at night.No one is on the site.
Re: What does this error message mean?
"a bunch of them seem to be generated, often at night" makes me think it is a spider indexing your site. Add an exclusion to your robots.txt files like so:
User-agent: *
Disallow: /*.axd$
User-agent: *
Disallow: /*.axd$
-
- Commander (CMDR)
- Posts: 182
- Joined: Tue Jan 27, 2009 2:29 pm
Re: What does this error message mean?
Don't I want spiders indexing my site?
Re: What does this error message mean?
Yes. But not the *.axd URL's. Those URL's do not point to content, but things like javascript or CSS.