In working with code in VisualStudio 08 Pro i frequently find myself facing a closing brace (}) wondering exactly where the thing opened. If it's only one screen's worth I can seen the shaded character right away but usually have to scrollup and look close.
Is there a keyboard shortcut that jumps to the beginning of the matching brace?
thx
Ok...Cntl + ] works in pure c# code ... how about in an MVC aspx page?
And again with an edit to show better context:
...<%
else if (row.RegistrationType == RegistrationType.Live)
{
%>
<a id="Add" onclick="AddStuff();" >Imagine lots and lots of text here that obscures the above brace from it's match below.</a>
<%
}//cursor here hightlights the brace following the else
//but cntl+] only jumps up one line.
%>