Break points aspx pages - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:17:10Z http://stackoverflow.com/feeds/question/301658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/301658/break-points-aspx-pages 0 Break points aspx pages PhilHoy 2008-11-19T11:47:09Z 2008-11-19T20:52:05Z <p>How do you set a break points in server tags in .aspx pages. e.g.</p> <pre><code>&lt;% dim breakhere =new object() %&gt; </code></pre> <p>The web application is running in debug mode with the <code>&lt;compilation debug="true" ...</code> in the web.config. But the page says:</p> <blockquote> <p>The break point will not currently be hit. No symbols have been loaded for this document.</p> </blockquote> <p>Is there anything else i need to set?</p> http://stackoverflow.com/questions/301658/break-points-aspx-pages/301950#301950 -1 Answer by rams for Break points aspx pages rams 2008-11-19T13:59:39Z 2008-11-19T13:59:39Z <p>I havent tried this myself but in ASP (VBScript) you can inject a STOP statement and that will trigger the IDE to break on that line</p> <p>Example</p> <pre><code>&lt;% STOP Dim o as Object = new Object() %&gt; </code></pre> <p>HTH</p> http://stackoverflow.com/questions/301658/break-points-aspx-pages/302146#302146 4 Answer by Scott Ivey for Break points aspx pages Scott Ivey 2008-11-19T15:02:49Z 2008-11-19T15:02:49Z <p>instead of setting the breakpoint directly, you could use</p> <pre><code>&lt;% System.Diagnostics.Debugger.Break(); // more code here... %&gt; </code></pre> <p>Maybe a better suggestion though is to not put inline code in your markup - instead put it in a method in the code-behind file, and then call that method from your markup. In your method in the code-behind, you can use the breakpoints as you normally would.</p>