Refresh problem when treeview node changed - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:14:25Z http://stackoverflow.com/feeds/question/1072780 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1072780/refresh-problem-when-treeview-node-changed 0 Refresh problem when treeview node changed Shivakumar 2009-07-02T06:22:26Z 2009-10-23T18:09:57Z <p>I have a Treeview in a masterpage and a products page in child page.</p> <p>When i click treeview node i want to bind data to a gridview on the product page.</p> <pre><code>protected void trvCategoryTab_SelectedNodeChanged(object sender, EventArgs e) { if (trvCategoryTab.SelectedNode.Value != string.Empty) { Response.Redirect("~/Customer/Products.aspx?Search=" + trvCategoryTab.SelectedNode.Value); } } </code></pre> <p>It's working fine, but the problem is that the page reloads every time. I want to prevent this.</p> <p>Is there any other method to redirect to the child page?</p> http://stackoverflow.com/questions/1072780/refresh-problem-when-treeview-node-changed/1615065#1615065 0 Answer by Jeremy Stein for Refresh problem when treeview node changed Jeremy Stein 2009-10-23T18:09:57Z 2009-10-23T18:09:57Z <p>It sounds like you want to use AJAX.</p>