各位老师,我在用vs2005调试项目时提示:用户'NT  AUTHORITY\IUSR' 登录失败,请问这种问题怎么解决?问题的具体信息:
**************************************************************************************************
**************************************************************************************************用户代码未处理 System.ApplicationException
  Message="无法打开登录所请求的数据库 \"PowerOA\"。登录失败。\r\n用户 'NT AUTHORITY\\IUSR' 登录失败。"
  Source="OI"
  StackTrace:
       在 OI.DatabaseOper.DatabaseConnect.dataConnect() 位置 F:\毕业设计\PowerOA\DatabaseOper\DatabaseOper.cs:行号 98
       在 OI.DatabaseOper.DatabaseConnect..ctor() 位置 F:\毕业设计\PowerOA\DatabaseOper\DatabaseOper.cs:行号 25
       在 OI.userpass.ImageButton1_Click(Object sender, ImageClickEventArgs e) 位置 F:\毕业设计\PowerOA\userpass.aspx.cs:行号 52
       在 System.Web.UI.WebControls.ImageButton.OnClick(ImageClickEventArgs e)
       在 System.Web.UI.WebControls.ImageButton.RaisePostBackEvent(String eventArgument)
       在 System.Web.UI.WebControls.ImageButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
       在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
       在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
       在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
  InnerException: 
****************************************************************************************************
****************************************************************************************************web.config文件连接数据库的代码:
<appSettings>
<add key="conn" value="server=(local)\SQLEXPRESS;database=PowerOA;Integrated Security=true"/>
<add key="errPage" value="/OI/ErrorForm.aspx"/>
<add key="photoPath" value="/OI/UpFile/Images"/>
<add key="reportAccessories" value="/OI/UpFile/ReportAccessories"/>
<add key="documents" value="/OI/UpFile/documents"/><!--写入文档附件的路径-->
<add key="ReadDocuments" value="/oi/upfile/documents"/><!--读出文档附件的路径  安装后需对此进行修改-->
<add key="stream" value="c:/Inetpub/wwwroot/OI/UpFile/Stream"/>
<!--流程文件路径-->
<add key="receiveDocument" value="/OI/UpFile/ReceiveDocument"/><!--收文办理上传文件 -->
</appSettings>
我没有安装SQL Server2005,用的是vs2005带的。