I am populating my treeview from a network directory and using populate on demand to load directory or files
everything is working fine in IE but in firefox when i click on the file it does not do anything and in chrome when i click on the file nothing happens and when i use f12 for developer tools there is a message which displays "Not allowed to load local resource:
"
here is my code
private void PopulateNormal(TreeNode node)
{
string path = node.Value;
if (node.Depth == 1)
{
path = node.ValuePath;
}
else
{
path = node.Value;
}
try
{
string path ="@"\\dev2\root\";
DirectoryInfo directory = new DirectoryInfo(path);
foreach (FileSystemInfo child in directory.GetFileSystemInfos())
{
TreeNode childNod ...
Go to the complete details ...