This is an old MCMS implementation of the console, but we are using it in almost all of our MCMS projects.
You can download it here: http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=eac2f41e-c14d-4c0a-a11a-78608d722e3d
This console has also it’s disadvantages. For instance it is not possible to use the ‘right-click’,’view-source’ in IE anymore because the console is linked to the ‘right-click’ event.
Thankfully it is possible to add this functionality to the console, just copy/paste the code below into you console:
<TR>
<TD class=”MenuItemIcon”></TD>
<TD class=MenuItemText onmouseover=Selected(this);
onclick=”window.open(‘view-source:<%# Request.Url %>’);return false”
onmouseout=UnSelected(this);> View Source
</TD>
</TR>