Hope this helps:
Solution:
Clear out the temporary framework files for your project in:
For Windows 7, the path is:
C:\Users[username]\AppData\Local\Temp\Temporary ASP.NET Files\
For 64 bit systems with 'Framework' in the path the full path is:
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files\
Reference: http://www.solutioncottage.com/ShowSolution.aspx?solID=59
Note: doing a search on the error code on google normally yields some great results ;-)
Edit: Regarding googling the hexidecimal Error Code. I recommend its better to use the Microsoft Error Utility. You download the tool, put the exe in your system32 folder. Then open CMD and run the command err 0x80070057
. It will tell you the error in the Operating System header files. Its much easiler to google these text messages along with the hex code. ps putting the exe in the system32 folder means you can run CMD from any directory in the command window.
Here is the result with the output ported to a text file:
err 0x80070057 > C:\NotNullGothjik.txt
# for hex 0x80070057 / decimal -2147024809 :
COR_E_ARGUMENT corerror.h
# MessageText:
# An argument does not meet the contract of the method.
DDERR_INVALIDPARAMS ddraw.h
DIERR_INVALIDPARAM dinput.h
DPERR_INVALIDPARAM dplay.h
DPERR_INVALIDPARAMS dplay.h
DPNERR_INVALIDPARAM dplay8.h
DSERR_INVALIDPARAM dsound.h
DVERR_INVALIDPARAM dvoice.h
ecInvalidParam ec.h
ecInvalidSession ec.h
ecBadBuffer ec.h
MAPI_E_INVALID_PARAMETER mapicode.h
STIERR_INVALID_PARAM stierr.h
E_INVALIDARG winerror.h
# One or more arguments are invalid
# 14 matches found for "0x80070057"