instead of setting the breakpoint directly, you could use
<% System.Diagnostics.Debugger.Break();
// more code here...
%>
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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…