It seems that having both the "div" tag to contain everything on the form and the form itself to be exactly the same size

[form id="SearchResults" runat="server" style="height: 565px; width: 1000px;"]

[div id="divContainer" style=" position:absolute; height:565px; width:1000px;"]


caused one to overlay the other. You could "look" through it, but you couldn't access anything on the form. Kinda like having a plate of glass on top. Once I removed the height and width properties from the Form statement, it worked as expected.