I use google-code-prettify as my syntax highlighter, but i have a problem with asp.net tags, prettify doesn't recognize it, so code like this:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Button ID="SubmitButton"
runat="server"
Text="partial postback"
onclick="SubmitButton_Click" />
<a href="#" id="clientClick"><span>jQuery</span></a>
</ContentTemplate>
</asp:UpdatePanel>
is ignored. i have noticed that stackoverflow is also using prettify. so i wonder how they do it?