No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
i have used below code for filtering tree view, search function works correctly, but i do not know how to refresh tree view and populate that after clicking the button. private IEnumerable<TreeNode> FindNodeByValue(TreeNodeCollection nodes, string searchstring) { foreach (TreeNode node in nodes) { if (node.Value.IndexOf(searchstring, StringComparison.CurrentCultureIgnoreCase) >= 0) yield return …
Hello I have searched a lot in Google but I could not find the clear answer. I have used below code for structure of folders and files in server but I need when click on file download dialogue box comes up and ready for download. How I have to improve …
I like to make grouping items for my dropdown list, I have found below code in the net but it does not do grouping, it does not add 'LessThanFifty' and 'GreaterThanFifty' to my dropdown list. It seems script does not work. Actually before when I was using opera as a …
The End.
masoud_sedighy