Has anyone ever come across this? I've never seen it before. I know there is a *.lic" file in my bin for some web charting software.

I did a publish, copied to dev server and then suddenly boom, get this error on every page.

Any ideas? I've cleared out temp asp.net files and restarted IIS.

edit:

wow, I'm thinking this might be the TumbleWeed badge.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

The problem was the NETWORK SERVICE lost it's permission to the bin directory. Yo estoy stupido.

link|improve this answer
feedback

Are you impersonating?

link|improve this answer
Not that I'm aware of lol I just copied this to my devserver and went to run and this started occuring. – Jack Marchetti Jul 22 '09 at 16:39
feedback

I was getting same error and tried giving full rights to "Everyone" on bin folder but didn't solve problem. I was using VS2010 on windows 7. Running visual studio as administrator solved my problem.

link|improve this answer
feedback

Add this to your web.config:

<configuration>
    <system.web>
        <compilation>
            <buildProviders>
                <remove extension=".lic"/>
                <add extension=".lic" type="System.Web.Compilation.ForceCopyBuildProvider"/>
            </buildProviders>
         </compilation>
    </system.web>
</configuration>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.