Click here to Skip to main content
15,891,621 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert String to HtmlDocument Pin
Pete O'Hanlon14-Mar-11 1:44
mvePete O'Hanlon14-Mar-11 1:44 
GeneralRe: Convert String to HtmlDocument Pin
Luc Pattyn14-Mar-11 1:57
sitebuilderLuc Pattyn14-Mar-11 1:57 
GeneralRe: Convert String to HtmlDocument Pin
Pete O'Hanlon14-Mar-11 2:01
mvePete O'Hanlon14-Mar-11 2:01 
GeneralRe: Convert String to HtmlDocument Pin
Luc Pattyn14-Mar-11 2:02
sitebuilderLuc Pattyn14-Mar-11 2:02 
GeneralRe: Convert String to HtmlDocument Pin
Abbas Fatshidi14-Mar-11 1:44
professionalAbbas Fatshidi14-Mar-11 1:44 
AnswerRe: Convert String to HtmlDocument Pin
Pete O'Hanlon14-Mar-11 0:59
mvePete O'Hanlon14-Mar-11 0:59 
QuestionAbout the ProgressBar of c# Pin
songguohui13-Mar-11 22:58
songguohui13-Mar-11 22:58 
AnswerRe: About the ProgressBar of c# Pin
Dalek Dave13-Mar-11 23:16
professionalDalek Dave13-Mar-11 23:16 
GeneralRe: About the ProgressBar of c# Pin
songguohui15-Mar-11 2:14
songguohui15-Mar-11 2:14 
AnswerRe: About the ProgressBar of c# Pin
Thomas Krojer13-Mar-11 23:18
Thomas Krojer13-Mar-11 23:18 
GeneralRe: About the ProgressBar of c# Pin
songguohui15-Mar-11 2:12
songguohui15-Mar-11 2:12 
AnswerRe: About the ProgressBar of c# Pin
Luc Pattyn13-Mar-11 23:44
sitebuilderLuc Pattyn13-Mar-11 23:44 
GeneralRe: About the ProgressBar of c# Pin
songguohui15-Mar-11 2:13
songguohui15-Mar-11 2:13 
GeneralRe: About the ProgressBar of c# Pin
Luc Pattyn15-Mar-11 2:23
sitebuilderLuc Pattyn15-Mar-11 2:23 
AnswerRe: About the ProgressBar of c# Pin
Keith Barrow13-Mar-11 23:52
professionalKeith Barrow13-Mar-11 23:52 
GeneralRe: About the ProgressBar of c# Pin
songguohui15-Mar-11 2:13
songguohui15-Mar-11 2:13 
GeneralRe: About the ProgressBar of c# Pin
Keith Barrow15-Mar-11 3:26
professionalKeith Barrow15-Mar-11 3:26 
QuestionWith Asp Running Program Change Excel Setting Pin
khoshrodi13-Mar-11 20:13
khoshrodi13-Mar-11 20:13 
AnswerRe: With Asp Running Program Change Excel Setting Pin
Pete O'Hanlon14-Mar-11 8:03
mvePete O'Hanlon14-Mar-11 8:03 
QuestionHow can i read xml type string from database? Pin
buffering8313-Mar-11 20:02
buffering8313-Mar-11 20:02 
AnswerRe: How can i read xml type string from database? [modified] Pin
Tarun.K.S13-Mar-11 21:59
Tarun.K.S13-Mar-11 21:59 
QuestionGet Remote server sub directories Pin
vishnukamath13-Mar-11 19:46
vishnukamath13-Mar-11 19:46 
Hi,


I tried with below code and i'm getting only root directories not sub directories , i need to get sub directories
please suggest me better way.


string ftpServerIP = "75.125.2.193";
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://" + ftpServerIP + "/");
request.Method = WebRequestMethods.Ftp.ListDirectoryDetails;
request.Credentials = new NetworkCredential("barikgr2", "barik122");
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
string line;
while ((line = reader.ReadLine()) != null)
{

TreeNode node = new TreeNode();
string[] _arv = line.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
node.Text = _arv[3];
treeView1.Nodes.Add(node);
}
reader.Close();
response.Close();


Regards,
Vishnu.
AnswerRe: Get Remote server sub directories Pin
JP_Rocks27-Mar-11 0:34
JP_Rocks27-Mar-11 0:34 
QuestionValidate User ID/ password on windows form Pin
shivamkalra13-Mar-11 15:07
shivamkalra13-Mar-11 15:07 
AnswerRe: Validate User ID/ password on windows form Pin
Luc Pattyn13-Mar-11 15:46
sitebuilderLuc Pattyn13-Mar-11 15:46 

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.