Click here to Skip to main content
15,891,847 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Roles and Membership Pin
vishwjeet3-Aug-09 1:08
vishwjeet3-Aug-09 1:08 
Questionaccess repeater dataitem Pin
benams2-Aug-09 20:27
benams2-Aug-09 20:27 
AnswerRe: access repeater dataitem Pin
Christian Graus2-Aug-09 20:30
protectorChristian Graus2-Aug-09 20:30 
AnswerRe: access repeater dataitem Pin
Abhishek Sur2-Aug-09 21:54
professionalAbhishek Sur2-Aug-09 21:54 
QuestionAJAX Ronded Corners Extender Pin
benams2-Aug-09 20:14
benams2-Aug-09 20:14 
AnswerRe: AJAX Ronded Corners Extender Pin
vid nandha2-Aug-09 20:48
vid nandha2-Aug-09 20:48 
GeneralRe: AJAX Ronded Corners Extender Pin
benams3-Aug-09 3:14
benams3-Aug-09 3:14 
Questionget files and folders from ftp Pin
ptvce2-Aug-09 19:23
ptvce2-Aug-09 19:23 
dirs = Directory.GetDirectories(path);
foreach (string dir in dirs)
{
string dirName = dir.Substring(dir.LastIndexOf("\\") + 1);

TreeNode child = new TreeNode();

child.Text = dirName;
child.Value = "";
child.PopulateOnDemand = false;
child.Collapse();
child.ImageUrl = "/images/dir.jpg";
node.ChildNodes.Add(child);

////////
filess = Directory.GetFiles(dir.ToString());
......
}

i wrote this code for get files and directory from a path e.x. when i write (path = d:\\programfile) i can list the directory and files, but now
i want get field and folders that there is in ftp path e.x. when i write (path=ftp://192.168.0.9 or path = ftp://myftp) i can list the directories and files that there is that path. is it possible? how can i do? is there any body help me or can u give me a sample
AnswerRe: get files and folders from ftp Pin
Christian Graus2-Aug-09 19:38
protectorChristian Graus2-Aug-09 19:38 
AnswerRe: get files and folders from ftp Pin
ptvce2-Aug-09 19:39
ptvce2-Aug-09 19:39 
GeneralRe: get files and folders from ftp Pin
Christian Graus2-Aug-09 19:42
protectorChristian Graus2-Aug-09 19:42 
AnswerRe: get files and folders from ftp Pin
dan!sh 2-Aug-09 19:56
professional dan!sh 2-Aug-09 19:56 
QuestionI found an Exception Message" System.outofmemory"exception was thrown" Pin
Saif-ur-Rehman Tanoli2-Aug-09 19:00
Saif-ur-Rehman Tanoli2-Aug-09 19:00 
AnswerRe: I found an Exception Message" System.outofmemory"exception was thrown" Pin
Abhijit Jana2-Aug-09 19:19
professionalAbhijit Jana2-Aug-09 19:19 
GeneralRe: I found an Exception Message" System.outofmemory"exception was thrown" Pin
Saif-ur-Rehman Tanoli2-Aug-09 20:39
Saif-ur-Rehman Tanoli2-Aug-09 20:39 
AnswerRe: I found an Exception Message" System.outofmemory"exception was thrown" Pin
Abhishek Sur2-Aug-09 22:58
professionalAbhishek Sur2-Aug-09 22:58 
QuestionDropdownlist event Pin
mrkeivan2-Aug-09 11:21
mrkeivan2-Aug-09 11:21 
AnswerRe: Dropdownlist event Pin
Abhijit Jana2-Aug-09 11:31
professionalAbhijit Jana2-Aug-09 11:31 
QuestionSession Pin
Ersan Ercek2-Aug-09 4:27
Ersan Ercek2-Aug-09 4:27 
AnswerRe: Session Pin
Not Active2-Aug-09 5:22
mentorNot Active2-Aug-09 5:22 
AnswerRe: Session Pin
Abhijit Jana2-Aug-09 6:09
professionalAbhijit Jana2-Aug-09 6:09 
AnswerRe: Session Pin
Vimalsoft(Pty) Ltd2-Aug-09 21:35
professionalVimalsoft(Pty) Ltd2-Aug-09 21:35 
QuestionViewState Pin
Ersan Ercek2-Aug-09 3:57
Ersan Ercek2-Aug-09 3:57 
AnswerRe: ViewState Pin
Abhijit Jana2-Aug-09 4:23
professionalAbhijit Jana2-Aug-09 4:23 
QuestionHelp with multiview control and AJAX Pin
Spoks_ST2-Aug-09 2:20
Spoks_ST2-Aug-09 2:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.