Shortcut key to go to the end of the html tag in asp.net [duplicate]
Possible Duplicate:
Matching tag in HTML keyboard shortcut
Is there any shortcut key in ASP.net to go to the end of the tag like in following html if I am on <div>
tag and I want to go to </div>
then I have to scroll down to the end.
<head>
<title></title>
</head>
<body>
<div>
<table>
<tr>
<td>
</td>
<td>
</td>
</tr>
</table>
</div>
</body>
</html>
In complex pages markup is huge and scrolling up and down waste a lot of time so if there is no short cut key then any suggestion that how to go to he end tag and start tag as quickly as possible using keyboard.
Thanks.
This has been asked and answered here: Matching tag in HTML keyboard shortcut
精彩评论