Refresh problem when treeview node changed - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T05:14:25Zhttp://stackoverflow.com/feeds/question/1072780http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1072780/refresh-problem-when-treeview-node-changed0Refresh problem when treeview node changedShivakumar2009-07-02T06:22:26Z2009-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#16150650Answer by Jeremy Stein for Refresh problem when treeview node changedJeremy Stein2009-10-23T18:09:57Z2009-10-23T18:09:57Z<p>It sounds like you want to use AJAX.</p>