hi
I have DropDownList and textbox and search button
I select Item from DropDownList and insert text into textbox and click on search button to search data from database
Problem is that when I click search button it doesn't keep my text into textbox and shows empty textbox
I want when I click search button my inserted text will show in textbox
Below are codes
<div id="DDlM2">
<asp:UpdatePanel ID="UpTran" runat="server">
<ContentTemplate>
<asp:DropDownList ID="Ddlmetraj" runat="server" CssClass="ddmetM"></asp:DropDownList>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<asp:UpdatePanel ID="UpdatePanel5" runat="server">
<ContentTemplate>
<div id="Div1" runat="server" visible="false">
<asp:TextBox ID="Txtvadie1" runat="server" CssClass="txtvadi2" ForeColor="#443f13" onblur="WaterMark(this, event,'تا');" onfocus="WaterMark(this, event,'تا');" Text="تا" onpaste="return false;"></asp:TextBox>
</div>
</ContentTemplate>
</asp:UpdatePanel>
best regards
Neda