hi
I want the textbox will appear under the button with effect something like when clicking on menu button and it will show menu items under menu button (with some effects).
I put search button and textbox in page that Textbox display is none.
I want when users click on searchbutton textbox will appear under of the button with effect (like slider effect).
below are code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style>
#searchDiv {
float: left;
width: 300px;
height: 300px;
}
.btnsearch {
float: right;
width: 32px;
height: 33px;
margin: 30px 0 0 0;
}
#HeaderL1 {
float: right;
width: 250px;
margin-left: 10px;
background-color: #222;
}
#Divsearch {
float: right;
width: 300px;
height: 100px;
}
.txtsearch {
float: right;
width: 200px;
height: 50px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="searchDiv">
<div id="HeaderL1">
<asp:ImageButton ID="Imgsearch" runat="server" ImageUrl="~/Image/magnifier.png" CssClass="btnsearch" />
</div>
<div id="Divsearch">
<asp:TextBox ID="Txtserach" runat="server" CssClass="txtsearch"></asp:TextBox>
</div>
</div>
</form>
</body>
</html>
Best Regards
Neda