TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sriram R
NA
64
800
How to programmatically c# change ftp user's password
Oct 10 2020 6:28 AM
HOW TO PROGRAMMATICALLY C# CHANGE FTP USER'S PASSWORD
this is for connectivy for FTP but i need futher change FTP Password :
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://" + "xxx.te.com)";
request.Method = WebRequestMethods.Ftp.ListDirectoryDetails;
request.Credentials = new NetworkCredential(rackid, password);
request.GetResponse();
request.KeepAlive = true;
request.UseBinary = true;
request.UsePassive = true;
request.GetResponse();
Please any one help it.
Reply
Answers (
1
)
How to convert json date to dd/mm/yy format
How to create a dynamic layout in asp.net MVC?