What i am trying to do is to open an some aspx thats within my project after clicking on treeview node, which i am creating dinamically...
private void treeView1_Click(object sender, TreeNodeMouseClickEventArgs e)
{
if (e.Node.Name == "Name_of_the_node")
{
Response.redirect // gives me mistake cant figure it why?????
}
}
What i am doing wrong,
appreciate any help
Go to the complete details ...