Click here to Skip to main content
15,887,214 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
There is one Textbox and Gridview databasse. The Textbox have textchanged event for search box. When there is any text in textbox and pressing the Search button the data is displayed in Gridview table. Textbox is working like Google search functionality.
When we enter the text and search the data is displayed in girdview but whole page is refreshed. So how to do it with update panel (in Ajax) so we can get the result without refreshing the whole page.
Gridview display the data from SQL database.

Reply me if you require any more details.

Thanks in advance
Posted
Comments
Anuj Banka 8-Dec-11 2:50am    
show your code what you are doing

i think you simply need to place a script manager and one update panel and in content template place both text box and grid view it will work fine.
 
Share this answer
 
Comments
hiteshprajpati 9-Dec-11 0:49am    
Thank you very much for your valuable reply, now its working.
bagiada 9-Dec-11 1:00am    
Hey..all frind's ,we need to soush code projeck asp net.could you please send email totorial asp net to me...(help )
Follow this :
XML
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine" ></asp:TextBox>
                <asp:Button ID="Button1" runat="server" Text="btn" onclick="Button1_Click" /><br />
                <asp:GridView ID="GridView1" runat="server"></asp:GridView>
            </ContentTemplate>
        </asp:UpdatePanel>


Hope it will help you.
Don't forget to mark as answer if it helps. :)
 
Share this answer
 
Comments
hiteshprajpati 9-Dec-11 0:50am    
Thank you very much for your valuable reply, now its working.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900