Alternative way of Removing an Element from the Page.

vishalneeraj-24503
Posted by vishalneeraj-24503 under CSS 3 category on | Points: 40 | Views : 1019
<style type="text/css">
#div_info
{
position: absolute;
top: -9999px;
left: -9999px;
}
</style>
<div id="div_info" style="width:100%;height:400px;border-color:orange;">
<asp:TextBox ID="txt_name" runat="server"></asp:TextBox>
<asp:TextBox ID="txt_address" runat="server"></asp:TextBox>
</div>

Comments or Responses

Login to post response