• Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged .
    当IIS服务器的虚拟目录不是应用程序的时候会出现这种错误。当启动页面的目录层大于一层时,例如:
    http://localhost/CRNETSamples/cr10_csharp_web_ClientPrinting/WebForm1.aspx
    需要在IIS为第二层目录创建应用程序。否则会出现上诉错误信息。
  • sqlserver数据库登陆失败:用户 'CLEVER06\ASPNET' 登录失败

         我用建立sqlDataAdaper的方法获得连接字符串,第一次选择连接的时候选择信任连接
         得到字符串如下。出现如上错误
         workstation id=CLEVER06;packet size=4096;user id=sa;password=sa;integrated security=SSPI;
         data  source=Clever06;persist security info=False;initial catalog=IPDataBase
         第二次不使用信任连接
          workstation id=CLEVER06;packet size=4096;user id=sa;password=sa;data source=clever06;persist security
          info=False;initial catalog=IPDataBase
         错误消失
       Visual Studio .NET cannot create the application <application>. The likeliest problem is 
       that  required components are not installed on the local Web server
       原因一,asp.net framework没有被注册,使用aspnet_regiis /i 注册即可。
         原因二,没有为应用程序建立虚拟目录。

       文件夹属性没有安全设置选项
       公司有域环境,电脑没有加入域,加入后即可