错误

发布于 2024-11-03 09:58:34 字数 814 浏览 1 评论 0 原文

为什么我会收到此错误?我该如何修复它?我从我开始做的应用程序中的 Web.config 进行连接,但我完成了学校问题,因为这是团队的努力。老师告诉我,我应该把它放在网上,这样我的连接就可以很好地建立,但如果 publicToken 或其他东西在写这行时这个邪恶的东西被星号括起来,那就不行了。我需要指出我写错了,请指出,谢谢。

“/”应用程序中的服务器错误。

配置错误 说明:处理服务此请求所需的配置文件时出错。检查下面的具体错误详细信息并相应地修改您的配置文件。 解析器错误消息:无法加载文件或程序集“System.Data.SqlClient,版本 = 10.50.1600,文化 = 中性,PublicKeyToken = b03f5f7f11d50a3a”或其依赖项之一。系统找不到指定的文件。 来源错误:

Line 51:   <add assembly="System.Data.Services, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
Line 52:   <add assembly="System.Data.Services.Client, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
Line 53:   **<add assembly="System.Data.SqlClient, Version=10.50.1600, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>**

Why do I get this error? How I can fix it? I'm connecting from Web.config in an application that I started to do but I finish school issues because it is a team effort. The teacher has told me I should put that online so that my connection is well made ​​but not if publicToken or something else this evil at the time of writing the line is enclosed in asterisks. I need to indicate that I am writing wrong Please will thank you.

Server Error in '/' Application.

Configuration Error
Description: Error during processing of a configuration file required to service this request. Check the specific error details below and modify your configuration file accordingly.
Parser Error Message: Could not load file or assembly 'System.Data.SqlClient, Version = 10.50.1600, Culture = neutral, PublicKeyToken = b03f5f7f11d50a3a'or one of its dependencies. The system can not find the file specified.
Source Error:

Line 51:   <add assembly="System.Data.Services, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
Line 52:   <add assembly="System.Data.Services.Client, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
Line 53:   **<add assembly="System.Data.SqlClient, Version=10.50.1600, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>**

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不奢求什么 2024-11-10 09:58:34

在 .NET 中,不存在诸如 System.Data.SqlClient, Version=10.50.1600, ... 这样的程序集。 SqlClient 是标准 .NET Framework 发行版的一部分。

例如,System.Data.SqlClient.SqlConnection:

Namespace:  System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)

In .NET there is no such assembly as System.Data.SqlClient, Version=10.50.1600, .... SqlClient is the part of standart .NET Framework distribution.

For example, System.Data.SqlClient.SqlConnection:

Namespace:  System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)

梦醒时光 2024-11-10 09:58:34

您是否检查过以确保指示的 dll 正在部署并且版本号与您上面指定的版本匹配?这个错误非常明显。系统在此行找不到代码引用的程序集。

Have you checked to make sure that the dll indicated is being deployed and that the version number matches the version you specify above? The error is pretty clear. The system can't find the assembly that the code refers to on this line.

千笙结 2024-11-10 09:58:34

那么,您可以浏览GAC(全局程序集缓存)来满足程序集数据。从命令提示符处使用以下命令:

gacutil -l

这会列出 GAC 的内容以及您需要的信息。

Well, you can browse the GAC (Global Assembly Cache) for meet the assembly data. Use the following command from de command prompt :

gacutil -l

This list the content of the GAC with the information that you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文