tell us more detailsdid you create the project in VS.NET? 
did you set a startup page? 
do you have a firewall or lockdown tool?

解决方案 »

  1.   

    web调试方法:将C:\WINNT\Microsoft.NET\Framework\v1.0.3705\CONFIG
    下的machine.config文件中的ProcessModel键中的username改为System
    应该可以.
      

  2.   

    楼上的兄弟,根本就没有你说的这个username了
     <section name="processModel" type="System.Web.Configuration.ProcessModelConfigurationHandler, System.Web, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineOnly"/>
    <!-- security -->
    这个名称是进程模式的,是说是否要把调试放到进程中吧!
      

  3.   

    怎末会没有?在
            <processModel
                enable="true"
                timeout="Infinite"
                idleTimeout="Infinite"
                shutdownTimeout="0:00:05" 
                requestLimit="Infinite" 
                requestQueueLimit="5000" 
                restartQueueLimit="10"
                memoryLimit="60" 
                webGarden="false"
                cpuMask="0xffffffff"
                userName="system"
                password="AutoGenerate"
                logLevel="Errors"
                clientConnectedCheck="0:00:05"
                comAuthenticationLevel="Connect"
                comImpersonationLevel="Impersonate"
                responseRestartDeadlockInterval="00:09:00"
                responseDeadlockInterval="00:03:00" 
                maxWorkerThreads="25"
                maxIoThreads="25"
            />
    段中,在试一试
      

  4.   

    saucer(思归, MS .NET MVP) ,经常会遇见这样的事情,就是有的项目你身在项目属性中已经把调试设置为true了就可以调试,有的你就是设置了,每次运行会跳一个对话框出来,大概意思是说不能调试,选yes和no,就是调试不了.我都快被微软弄死了,老是一些这样的小问题折腾人,你说就是调试有问题,其它怎么可以?????这个项目就打死不能调试???搞不懂啊..命苦.
      

  5.   

    一定要在IE中设置可信任站点为机器的IP地址,是HTTP,不能是HTTPS!
      

  6.   

    ylc001(捡破烂的程序员) :什么意思啊,和这个还有关系,没看懂你说的话,
    你能说明白点吗?
    我是脚本调试了.
    我是.cs文件的断点调试了.
      

  7.   

    调试的时候,选择运行边上的 下拉框,确认是 debug,不是realse
      

  8.   

    baitianhai(hong) ( ) :谢谢,我是debug
      

  9.   

    在试试运行
    \WINNT\Microsoft.NET\Framework\v1.0.3705\aspnet_regiis -i
      

  10.   

    我的错误屏幕
    http://61.153.235.86/sf/screen.jpg,我该怎么解决,上面的办法我都试过了呀!
      

  11.   

    权限不对,
    设定ie中的"工具"-->"internet选项'->"安全'_>"自定义'_>"用户验证"-->"自动使用当前用户名"
      

  12.   

    怎么会是用户权限不对,再出来这个提示的时候,我的ie还没有启动呢!而且我的ie是和你一样设置的呀!
      

  13.   

    try dbgclr.exe in 
    D:\Program Files\Microsoft.NET\FrameworkSDK\GuiDebug
    http://chs.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/debugcomsdk.aspx
      

  14.   

    http://www.microsoft.com/china/community/article.asp?oBODY=TechZone/FAQ/SRC306165&oXSLT=TechZone/FAQ/nav
      

  15.   

    尝试了ms的办法,也不行!!我已经重新安装了vs.net(没有卸载,只是覆盖)但是问题还是存在!!还是不能调试!!
    错误:
    http://61.153.235.86/sf/screen.jpg
      

  16.   

    1. do you have urlscan.exe running?  if yes, find the file named "urlscan.ini", and add "DEBUG" into "[allowverbs]" section in the file. Kill "urlscan.exe" in the task manager and reboot your IIS2. did you change the IP for your default web site? open Internet Services Manager, right click on your default web site, select Properties. On the Web Site tab, make sure (All Unassigned) is selcted in IP adress dropdownlist. If not, change to this value and reboot IIS
      

  17.   

    解决了!谢谢!的确是urlcsan.ini的问题,加上debug方法就可以了!
      

  18.   

    urlcscan好象要安裝吧﹐我找了一個,但沒發現urlscan.exe
    各位大俠,能否把調試的步驟寫詳細一點啊﹐小弟也想學習學習