EventType clr20r3, P1 iexplore.exe, P2 6.0.3790.0, P3 3e7fffe0, P4 system, P5 2.0.0.0, P6 4333ae87, P7 5a2, P8 0, P9 system.io.filenotfoundexception, P10 NIL
以上是事件查看器里面的错误信息,我使用的是Microsoft .NET Framework 1.1
而查看了相关资料,却说这是2.0一个错误,因为这个错误,我的浏览器只要一打开这个页面就会关闭浏览器,郁闷啊,请教各位高手,如何解决?

解决方案 »

  1.   

    I had an Idea as to what this could be, since it is coming client side. The control is no doubt running under .net too, so IE will be loading the latest version of the framework it can. Hence the .net2.0 errrors and messages you are getting. Goto your internet explorer directory eg "C:\Program Files\Internet Explorer" where the iexplore.exe file is. Create a text file "iexplore.exe.config"and place the following in it:
    <?xml version ="1.0"?>
    <configuration>
    <startup>
    <supportedRuntime version="v1.1.4322"/>
    </startup>
    </configuration>You will have to have .NET 1.1 installed as well, so that IE will drop back to 1.1 for this control you are having problems with. You might have to tweak the version number in the XML, look in "C:\WINDOWS\Microsoft.NET\Framework\" for the version number you have installed.Hope this helps.自己翻译一下,我没时间!!!