show/hide this revision's text 3 deleted 44 characters in body; edited tags

I have a Treeview in a masterpage and a products page in child page.

When i click treeview node i want to bind data to a gridview on the product page.

protected void trvCategoryTab_SelectedNodeChanged(object sender, EventArgs e)
{         
  if (trvCategoryTab.SelectedNode.Value != string.Empty)
  {            
    Response.Redirect("~/Customer/Products.aspx?Search=" + trvCategoryTab.SelectedNode.Value);
  }
}

Its

It's working fine, but the problem is that the page reloads every time. I want to prevent this.

Is there any other method to redirect to the child page?

show/hide this revision's text 2 added tag, did some initial editing

I have a Treeview in mastermage a masterpage and a products page in child page. When i click treeview node i want to bind data to a gridview on the product pagegridview.

protected void trvCategoryTab_SelectedNodeChanged(object sender, EventArgs e) {

        if (trvCategoryTab.SelectedNode.Value != string.Empty)
        {            
            Response.Redirect("~/Customer/Products.aspx?Search=" + trvCategoryTab.SelectedNode.Value);
        }
    }

Its working finebut, but the problem is every time that the page reloads every time. .. I want to prevent the refresh problem this...

Is it there any other method to redirect to the child page?

show/hide this revision's text 1

Refresh problem when treeview node changed

I have Treeview in mastermage and products page in child page . When i click treeview node i want to bind product page gridview

protected void trvCategoryTab_SelectedNodeChanged(object sender, EventArgs e) {

        if (trvCategoryTab.SelectedNode.Value != string.Empty)
        {            
            Response.Redirect("~/Customer/Products.aspx?Search=" + trvCategoryTab.SelectedNode.Value);
        }
    }

Its working fine but, the problem is every time the page reloads ... I want to prevent the refresh problem ...

Is it any other method to redirect child page