Dear all, I have written the method below, it's recursive. That's why I'm pretty curious about performance issue. How can I use caching with this one? 1 public static void PopulateMenuByParent(TreeNode n, int idParent, bool detail, TreeView tv) 2 { 3 using (SqlConnection con= new SqlConnection(WebConfigurationManager...