Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7172587
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:38:44+00:00 2026-05-28T15:38:44+00:00

i want grid to be rebound without refreshing page when search button is fired

  • 0

i want grid to be rebound without refreshing page when search button is fired
i’ve used PostBackTrigger but it isn’t worked for me

here is some part of my code.aspx

<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />

<asp:TextBox runat="server" ID="txtSearch"/>
<asp:Button Text="Search" runat="server" ID="btnSearch" OnClick="btnSearch_Click" />

<asp:UpdatePanel runat="server" ID="pnlUpdate">
<ContentTemplate>
  <rad:RadGrid id="RadGrid1" runat="server" EnableAJAX="True">
   <MasterTableView AutoGenerateColumns="False">
    <Columns>
     <rad:GridBoundColumn HeaderText="CustomerID" DataField="CustomerID"
      UniqueName= "CustomerID"></rad:GridBoundColumn>
     <rad:GridBoundColumn HeaderText="ContactName" DataField="ContactName"
      UniqueName= "ContactName"></rad:GridBoundColumn>
    </Columns>
   </MasterTableView>
 </rad:RadGrid>
</ContentTemplate>
    <Triggers>
        <asp:PostBackTrigger ControlID="btnSearch" />
    </Triggers>
</asp:UpdatePanel>

so is there any trick to solve this issue ??
thanks to all

Milan Mendpara

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T15:38:45+00:00Added an answer on May 28, 2026 at 3:38 pm

    You have not defind any Button ‘Click’ EventHandlers for either the OnClick or OnCommand for the button. Be sure that you are not unconditionally binding your Data in the Page_Load or Page_Init Events, check to see if the page is not handling a postback.

    <asp:Button Text="Search" OnClick="btnSearch_Click" runat="server" ID="btnSearch" />
    
    // Change <asp:PostBackTrigger ControlID="btnSearch" />
    <asp:AsyncPostBackTrigger ControlID="btnSearch" />
    
    // Code Behind EventHandler
    protected void btnSearch_Click(object sender, EventArgs e)
    {
        // Retrieve and Bind Search Data to RadGrid1
        // You must Bind or Rebind the Datasource to the RadGrid control using the Bind() or Rebind() methods.
     }
    
    
    // Check Databind is conditional if required
    protected void Page_Load(object sender, EventArgs e)
    {
        If (!Page.IsPostBack)
        {
            // Bind Data if required
        }    
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to delete a row in the grid, but the grid always post's
Here is the layout I want: Grid with 2 columns, 2 rows Row 1
Can we disable the gridview horizontal line ? I want to display grid without
My problem is that I want a grid that is populated with a set
I want to create a property grid (the one which is similar to the
At run time I want to dynamically build grid columns (or another display layout)
I want to create a really easy to use 2D Grid. Each cell in
I want to display and edit some objects in a WPF data grid and
Say you want a simple maze on an N by M grid, with one
I'm creating a grid based game in Java and I want to implement game

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.