Hi Bob,
Welcome Microsoft Newsgroup Support Service! My name is Hongye Sun [MSFT].
It's my pleasure to work with your on this issue.
Based on my understanding of your issue, I know that your problem is that
in your machine F5 shortcut key works exactly the same as Ctrl-F5 when you
are developing ASP.NET project. It is strange that I have tried to create a
new website and debug it as the same as what you have described, but I
cannot reproduce the situation that you had. What I did are:
1. Reset me development settings to VB development settings. Since you have
experience on VB, I suppose you are using this setting.
2. Create a new ASP.NET website from startup page.
3. Change the Web.config file to "<compilation debug="true" strict="true"
explicit="true" />"
4. Edit Default.aspx.vb file to override onload event:
Partial Class _Default
Inherits System.Web.UI.Page
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
MyBase.OnLoad(e)
Response.Write("Test")
End Sub
End Class
5. Set breakpoint at Response.Write("Test"), and press F5.
Finally the breakpoint hits.
Please let me know if there is any difference than what I have did.
In order to narrow down the problem, would you please help us to try the
following actions:
1. Reset your VS 2005 settings, you can do it by opening menu Tools /
Import and Export Settings, and select Reset all settings click Next, and
choose to back up your settings and click next again, choose the VB
Development Settings and click Finish.
2. Right click the website project and click property pages, select Start
Options, make sure the ASP.NET debugger is checked and use default web
server.
Bob, please try the actions and let me know whether it works for you. If
you have any other concerns or questions, please DON'T hesitate to tell me.
Regards,
Hongye Sun (, remove 'online.')
Microsoft Online Community Support
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.