我建了一个页面,在本地测试可以正常运行,但是上传到空间后得到下面这样的错误:
Could not load file or assembly ‘MySql.Data.dll, Version=6.3.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d’ or one of its dependencies. The system cannot find the file specified.
我在网上找了半天也没找到什么解决方法,希望知道的朋友能给我指点下。
我用的是VS2010,MySql.Data.dll是放在.aspx页面的同一个目录里面的。
我的web.config文件比较简单,代码如下:- <?xml version=”1.0″?>
- <!–
- For more information on how to configure your ASP.NET application, please visit
- http://go.microsoft.com/fwlink/?LinkId=169433
- –>
- <configuration>
- <system.web>
- <compilation debug=”true”>
- <assemblies>
- <add assembly=”MySql.Data.dll, Version=6.3.6.0, Culture=neutral, PublicKeyToken=C5687FC88969C44D”/>
- </assemblies>
- </compilation>
- <customErrors mode=”Off” />
- </system.web>
- </configuration>
复制代码 |