由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - ASP web application 问题请教
相关主题
关于SqlDataAdapter的初级问题求助can not run ASP by IIS 5.1 in WIN XP (转载)
asp.net/IIS configuration problem[合集] can not run ASP by IIS 5.1 in WIN XP (转载)
web farm请教:新手学 ASP, 关于安装 IIS
get_innerHTML需要什么样的permission?authentication
understand ASP.Net 1: ASP vs ASP.Nethow to use window authentication in the ASP.net? Thank you!
understand ASP .Net 3: why ASP .Net is fasterASP.NET -- help
用ASP .Net 和Python for .Net做了一个小范例SolvedRe: 关于SqlDataAdapter的初级问题求助
ASP.Net比ASP倒底好多少?foxpro and c#
相关话题的讨论汇总
话题: asp话题: user话题: authority话题: network话题: service
进入DotNet版参与讨论
1 (共1页)
l*******r
发帖数: 713
1
在做一个ASP .NET web application, 用到SqlDataAdapter的Fill() method, 编译可以
通过,但是运行时报措说
System.Data.SqlClient.SqlException: Login failed for user 'NT AUTHORITY\
NETWORK SERVICE'.
这里的SqlConnection用的是windows authentication, 而且我是用administrator登录的
,不知道这个user 'NT AUTHORITY\NETWORK SERVICE'是怎么来得。
d*r
发帖数: 238
2
Are you running win2003?
Win2003 use this account as default when connecting through a trusted
connection. So you need to assign appropriate permissions to this account. Or
you could specify what user account you would like to use for this connection.




【在 l*******r 的大作中提到】
: 在做一个ASP .NET web application, 用到SqlDataAdapter的Fill() method, 编译可以
: 通过,但是运行时报措说
: System.Data.SqlClient.SqlException: Login failed for user 'NT AUTHORITY\
: NETWORK SERVICE'.
: 这里的SqlConnection用的是windows authentication, 而且我是用administrator登录的
: ,不知道这个user 'NT AUTHORITY\NETWORK SERVICE'是怎么来得。

c*******8
发帖数: 4
3
你的SQLserver和IIS在不同的机器上马。
If yes && in same domain
do
create a domain user account
make iis virtual directory anonymous run under this account
add this user to your database user, assign permission
in your web.config add ''
then you will be fine.




【在 l*******r 的大作中提到】
: 在做一个ASP .NET web application, 用到SqlDataAdapter的Fill() method, 编译可以
: 通过,但是运行时报措说
: System.Data.SqlClient.SqlException: Login failed for user 'NT AUTHORITY\
: NETWORK SERVICE'.
: 这里的SqlConnection用的是windows authentication, 而且我是用administrator登录的
: ,不知道这个user 'NT AUTHORITY\NETWORK SERVICE'是怎么来得。

l*******r
发帖数: 713
4
SQL Server和IIS在同一个机器上,不过问题是一样的,加了那句就可以了。
Thanks.

【在 c*******8 的大作中提到】
: 你的SQLserver和IIS在不同的机器上马。
: If yes && in same domain
: do
: create a domain user account
: make iis virtual directory anonymous run under this account
: add this user to your database user, assign permission
: in your web.config add ''
: then you will be fine.
:
: 以

1 (共1页)
进入DotNet版参与讨论
相关主题
foxpro and c#understand ASP.Net 1: ASP vs ASP.Net
How to Call Stored Procedure in C# .Net?understand ASP .Net 3: why ASP .Net is faster
ASP.NET和PHP用ASP .Net 和Python for .Net做了一个小范例
A question on authentication and cookieASP.Net比ASP倒底好多少?
关于SqlDataAdapter的初级问题求助can not run ASP by IIS 5.1 in WIN XP (转载)
asp.net/IIS configuration problem[合集] can not run ASP by IIS 5.1 in WIN XP (转载)
web farm请教:新手学 ASP, 关于安装 IIS
get_innerHTML需要什么样的permission?authentication
相关话题的讨论汇总
话题: asp话题: user话题: authority话题: network话题: service