Download File Using URL On Same Page From Jquery/Javascript
August 3, 2017 Category: JAVA SCRIPT, JQUERY
Comments:
Download File Using URL On Same Page From Jquery/Javascript :-
var data = FileUrl;Read More
Remove or Delete file from SFTP using Winscp(Version 5.5.4) in C#
January 17, 2015 Category: C#.Net
Comments:
Use below link to download DLL and EXE
Download Link :- http://olex.openlogic.com/packages/winscp/5.5.4
Dll :- WinSCPnet.dll :-> Select Winscp 5.5.4 .NET Assembly / COM library Windows ALL Binary
Executable Path :- WinSCP.exe :-> Select Winscp 5.5.4 Portable Executable Windows ALL Binary
Use WinSCP;//Namespace after adding Dll in projectRead More
Download file from SFTP using Winscp(Version 5.5.4) in C#
January 17, 2015 Category: C#.Net
Comments:
Remove or Delete file from SFTP using Winscp(Version 5.5.4) in C#
Use below link to download DLL and EXE
Download Link :- http://olex.openlogic.com/packages/winscp/5.5.4
Dll :- WinSCPnet.dll :-> Select Winscp 5.5.4 .NET Assembly / COM library Windows ALL Binary
Executable Path :- WinSCP.exe :-> Select Winscp 5.5.4 Portable Executable Windows ALL Binary
Use WinSCP;//Namespace after adding Dll in projectRead More
Get list of files from SFTP using Winscp(Version 5.5.4) in C#
January 17, 2015 Category: C#.Net
Comments:
Use below link to download DLL and EXE
Download Link :- http://olex.openlogic.com/packages/winscp/5.5.4
Dll :- WinSCPnet.dll :-> Select Winscp 5.5.4 .NET Assembly / COM library Windows ALL Binary
Executable Path :- WinSCP.exe :-> Select Winscp 5.5.4 Portable Executable Windows ALL BinaryRead More
Delete duplicate records from Table using SQL
January 15, 2015 Category: SQL
Comments:
Delete duplicate records from Table using SQLRead More
Delete Rows from DataTable Using Linq in C#Read More
Update Field Value in DataTable using Linq in C#Read More
Unzip compressed folder in C# using 4.0 framework
December 24, 2014 Category: C#.Net
Comments:
Use System.IO.Compression.FileSystem.dll which exist in C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.IO.Compression.FileSystem\v4.0_4.0.0.0__b77a5c561934e089
Namespace Name :- using System.IO.Compression.FileSystem
Read More
Today I’m going to tell you to read multiple files from folder using FTP Location.Please follow below steps to fetch
Step 1 :- Place code in Class file
string ftpDownloadResult = string.Empty;
try
{
WebRequest request = WebRequest.Create(ConfigurationManager.AppSettings["FTPPath"]);
request.Method = WebRequestMethods.Ftp.ListDirectory;
request.Credentials = newNetworkCredential(ConfigurationManager.AppSettings["FTPUserName"],
ConfigurationManager.AppSettings["FTPPassword"]);
Read More
Read File from FTP location in Console Application using C#
November 10, 2014 Category: C#.Net
Comments:
Today I'm going to tell you to read text from FTP Location.Plz follow below steps to fetch
Step 1 :- Place code in Class file
WebRequest request = WebRequest.Create(ConfigurationManager.AppSettings["FTPPath"]);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Credentials = new NetworkCredential(ConfigurationManager.AppSettings["FTPUserName"],
ConfigurationManager.AppSettings["FTPPassword"]);
Read More