Stop background find in "visual studio" not always stops search

In VS 2005 (I have SP1) it is a toolbar icon called “Stops a background Find”, that suppose to cancel the find .

However I noticed on my machine and on my colleage's machine, that sometimes VS hangs on searching(shows the search as processing, but doesn't change the filename on status bar).The button nether shortcut (Alt-F3,S)  doesn't stop search and you need to close VS to re-enable searching.
I don't have enough details to reproduce the problem, so it is pointless to report to MS Feedback site

asp:PlaceHolder can be put within html table, if the table is not runat="server"

I had a table in user control, taht included asp:PlaceHolder. In the code some other user controls are loaded into the placeholder.
            <table cellSpacing="0" cellPadding="0" border="0" >
                        <TR>
                              <TD >Header</TD>
                        </TR>
                        <asp:PlaceHolder id="plc1" Runat="server"></asp:PlaceHolder>
                  <table>

It worked fine until I decided make the table  conditionally invisible based on some server logic. I've added an ID ans runat="server" to the table and got an error:

System.Web.HttpCompileException: error CS1502: The best overloaded method match for 'System.Web.UI.HtmlControls.HtmlTableRowCollection.Add(System.Web.UI.HtmlControls.HtmlTableRow)' has some invalid arguments

To solve the problem I had to wrap table in asp:panel
                     <asp:panel id="pnl1" runat="server" Visible="false" BorderWidth="0">
                  <table cellSpacing="0" cellPadding="0" border="0" >
                        <TR>
                              <TD >Header</TD>
                        </TR>
                        <asp:PlaceHolder id="plc1" Runat="server"></asp:PlaceHolder>
                  <table>
            </asp:panel>
«October»
SunMonTueWedThuFriSat
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910