Break points aspx pages - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T18:17:10Zhttp://stackoverflow.com/feeds/question/301658http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301658/break-points-aspx-pages0Break points aspx pagesPhilHoy2008-11-19T11:47:09Z2008-11-19T20:52:05Z
<p>How do you set a break points in server tags in .aspx pages. e.g.</p>
<pre><code><% dim breakhere =new object() %>
</code></pre>
<p>The web application is running in debug mode with the <code><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-1Answer by rams for Break points aspx pagesrams2008-11-19T13:59:39Z2008-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><%
STOP
Dim o as Object = new Object()
%>
</code></pre>
<p>HTH</p>
http://stackoverflow.com/questions/301658/break-points-aspx-pages/302146#3021464Answer by Scott Ivey for Break points aspx pagesScott Ivey2008-11-19T15:02:49Z2008-11-19T15:02:49Z<p>instead of setting the breakpoint directly, you could use</p>
<pre><code><% System.Diagnostics.Debugger.Break();
// more code here...
%>
</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>