English 中文(简体)
ASP. NET起点问题: 如何消除这一错误?
原标题:ASP.NET beginner question: How to get rid of this error?

我正试图在伙伴关系中建立一个简单的标识网页。 NET C#,但正出现一些错误。

I googled about the error, and tried all the solutions but to no avail. What am I doing wrong? The error is:

“在建立与服务器KQ的链接时,发生了与网络有关的或针对具体情况的错误。 服务器没有发现或无法使用。 证明试样名称正确,并配置服务器,以便远程连接。 (提供人:网络接口,错误:26 - Error Locating服务器/Instance Specised)”

我认为,这关系到我的联系:

 <add name="cn"
      connectionString="server=HCL;DataBase=GS;Integrated Security=True" />

“HCL”是另一个通过局域网与我的个人计算机连接的机器,该数据库“GS”在网上居住。 我在上述法典的“Server”属性中给出的价值问题吗? 如果没有,我会做什么?

我可以告诉我所尝试的所有解决办法。 让我知道这是否必要。

最佳回答

我认为,“Server”是一种有效的联系财产。 取而代之的是“数据来源”。 还应当将“综合安全”规定给临时自治机构:

<add name="cn" connectionString="Data Source=HCL;Initial Catalog=GS;Integrated Security=SSPI"/>

UPDATE: I just noticed that you have also used "Database". This should be "Initial Catalog".

UPDATE2: There is a neat trick for creating connection strings by using .udl files. If you create an empty file called "something.udl" and double click it, Windows will open a nice dialog for defining connections. To create a connection string for a SQL Server, choose "Microsoft OLEDB Provider for SQL Server" on the "Provider" tab and then fill in your server name, login credentials, and database name on the "Connection" tab. Finish by testing the connection and click "OK".

方言关闭后,你可以把ud子或视力演播室拖入,而且你会看到,辩证文件实际上载有可供你使用的链接(请注意,如果你希望使用的链接,在NET中,你必须删除“provider=SQLOLEDB.1”部分。

问题回答

错误无疑是连接。 通常在防火墙规则中,遥远的连接已经残疾,或只是一般的连接问题。

然而,使用综合安全可能是你的问题。 如果你处于一个领域/工作集团,就可以工作,那么它就适当地设定了许可,但如果没有,你可能就有必要通过全权证书。 综合安全将记录您的证明书,如果该数据库与申请相同,则是一种正常方法。

<add name="cn" connectionString="Data Source=HCL;Initial Catalog=GS;User Id=YOURSQLUSERNAME;Password=YOURSQLPASSWORD;"/>

See http://www.linkionstrings.com/ for more connection string examples.

添加“综合安全=特别安全标准;”或具体说明您的UID,Pwd用于连接服务器。 你可能会被弄清真实性。

  • 开放管理演播室,使用SQAusentication与SQ服务器连接。 进入用户版和密码连接。 在你的联系中使用这种使用和密码。

    linkionString=“Data Source=HCL;Initial Catalog=GS;User Id=UserId;Pasword=password;

  • User Id -> UserId you want to login using. like sa

  • 密码——和;用户密码。

如果用户名称不准确,那么这一联系将有所帮助。 这将使用户能够浏览。

http://www.un.org。

connectionString="Data Source=HCL;Initial Catalog=GS;Persist Security Info=True;User ID=sa;Password=pass"

这一联系有助于帮助

.sql-network-interfaces-error-26-error-s--s-oc-server-instance-specised





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签