Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

marked as duplicate by Jeff Atwood May 19 '11 at 10:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

This has been asked and answered here: Matching tag in HTML keyboard shortcut

share|improve this answer
Thanks, I have searched before posting question but could not find it. – Kashif May 18 '11 at 7:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.