Hi Param,
Thank you for posting.
As for the "Could not load file or assembly" error, I've also noticed some
other customers and community members report such issue. And in most cases,
the problem is caused by some page which include or reference some other
ascx usercontrols or uesrcontrols has nested usercontrols.... Is this
also your case? For test, when the application running correctly ,you can
go to the .NET 2.0's ASP.NET temporarly dir and find the problem assembly
(App_Web_nr8ih6ru, Version=0.0.0.0, Culture=neutral,
PublicKeyToken=null' in your case) and use reflector to check what's the
page and usercontrols in this assembly.
Meanwhile, you can also try avoid this issue by either turning off batching
- in web.config, set <compilation batch="false"/>, or, when the error
occurs, do a clean re-build for the application using precompilation tool:
aspnet_compiler -v <your app name> -c
This will force a clean re-build for your application. It will shorten
response time for first request dramatically. (It is recommended to always
do a clean re-build whenever changes made to a web site.)
Please let me know your result.
Regards,
Steven Cheng
Microsoft Online Support
Get Secure!
www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)