使用网站附加到 VS2010 Express 中的流程。是否可以?

发布于 2024-10-06 17:41:26 字数 394 浏览 1 评论 0原文

我已阅读这篇文章,但它适用于带有 .csproj 的 Web 项目...“网站”怎么样?

http://www.ninjatrader.com/support/forum/showthread。 php?t=15671

这里的工作人员告诉我只需response.write我的方式来调试网站,但我真的很怀念vs2010专业版中的附加到进程..或者也许我必须这样做习惯了response.write调试吗?

(我没有调试的原因是ektron 8.0无法编译vs2010..所以我必须附加到进程..或使用vs2008)

I have read this article but it applies to web projects with a .csproj... What about a 'web site'?

http://www.ninjatrader.com/support/forum/showthread.php?t=15671

People at work here tell me to just response.write my way to debug the web sites but I really miss the attach to process that is in the professional edition of vs2010.. or maybe I have to get used to response.write debugging?

(Reason I am not debugging is ektron 8.0 does not compile is vs2010.. so I must attach to process.. or use vs2008)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

信愁 2024-10-13 17:41:26

Visual Studio 2010 Express Edition 支持附加到进程,但仅在专家设置中可用。
转到工具->设置->专家设置
进行此更改后,您应该在调试菜单中看到附加到进程按钮。

Visual Studio 2010 Express Edition supports Attach to process but it is available only in Expert Settings.
Go to Tools->Settings->Expert Settings.
After this change, you should see Attach to Process button in Debug menu.

ら栖息 2024-10-13 17:41:26

它不适用于 VS2100 Express。检查链接。 http://msdn.microsoft.com /en-us/library/vstudio/c6wf8e4z(v=vs.100).aspx

It isn't available for VS2100 Express. Check the link. http://msdn.microsoft.com/en-us/library/vstudio/c6wf8e4z(v=vs.100).aspx

养猫人 2024-10-13 17:41:26

对于托管在另一个应用程序(如 IIS)上的网站,一个选项是使用属性页。

在解决方案资源管理器中右键单击项目/网站 -> 属性页 -> 启动选项

  1. 以管理员身份启动 VS2010 Express(或 VS2012 Express)
  2. “开始操作”单选按钮设置为“不打开页面。等待外部应用程序的请求。”
  3. 设置“服务器”将单选按钮设置为“使用自定义服务器”
  4. “基本 URL” 文本框设置为您的网站 URL。
  5. 验证调试器: ASP.NET 选项已选中。
  6. F5启动调试器,然后在浏览器中请求该页面。

然后,链接到该网站就像按播放调试按钮并导航到您的网址一样简单。

注意:这是在 VS Express for Web 2012(版本 11.0.50727.1)的网站项目中进行测试的。

An option for websites hosted on another application (Like IIS) is to use the property pages.

Right Click on Project/Website in Solution Explorer->Property Pages->Start Options

  1. Launch VS2010 Express (or VS2012 Express) as Administrator
  2. Set "Start Action" radio-button to "Don't open a page. Wait for a request from an external application."
  3. Set "Server" radio-button to "Use Custom Server"
  4. Set the "Base URL" textbox to your site url.
  5. Verify the Debuggers: ASP.NET option is checked.
  6. Hit F5 to launch the debugger, then request the page in the browser.

Then, linking to the website is as easy as pressing the play-debug button and navigating to your url.

NB: This was tested in VS Express for Web 2012 (ver. 11.0.50727.1) on a Web Site project.

夏末 2024-10-13 17:41:26

就像上面的帖子中所说,您可以在 Visual Studio Express 中使用“附加到进程”。但没有必要将您的设置更改为“专家设置”。您所要做的就是将该命令添加到调试菜单中。
工具->定制->命令->菜单栏:调试->添加命令...->调试->附加到进程

Just like said in the post above, you can use "Attach to process" in visual studio express. But it's not necessary to change your settings to "expert settings". All you have to do is add the command to the debug menu.
Tools-> Customize -> Commands -> Menu bar: Debug -> Add Command... -> Debug -> Attach to Process

简美 2024-10-13 17:41:26

试试这个:

  1. 右键单击工具栏/菜单“自定义”/选项卡“命令”/按钮“添加命令”/左侧列表“调试”/右侧列表“附加到进程...”/按钮“确定”/按钮“关闭”。
  2. 对我来说 crtl-alt-p 快捷键也有效。
    ..瞧!

Try this:

  1. right click on toolbar/menu Customize/tab Commands/button Add Command/left list Debug/right list Attach to Process.../button OK/button Close.
  2. for me works crtl-alt-p shortcut too.
    .. voila!
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文