SSIS | Download file via ftp
Protected Function GetFTPFile(ByVal FileDaScaricare As String) As String Dim r As String = String.Empty Dim a As String = Now.Year Dim m As String = Now.Month If CInt(m) < 10…
Appunti, stralci di programmazione e altro
Protected Function GetFTPFile(ByVal FileDaScaricare As String) As String Dim r As String = String.Empty Dim a As String = Now.Year Dim m As String = Now.Month If CInt(m) < 10…
Imports System.Net Dim Result As String = String.Empty Dim url As String = "url della pagina che vuoi catturare" Dim http As WebClient = New WebClient Dim bResult As Byte()…
Imports System.Net Dim url As String = “http://www.sorrentino.it/sorrentino.html” Dim http As WebClient = New WebClient http.DownloadFile(url, “C:\html\sorrentino.html”)
Imports System.Security.Cryptography Public Class MyEncrypt Dim EncryptionKey As String = "password scelta da te" Public Function EncryptString128Bit(ByVal vstrTextToBeEncrypted As String) As String Dim bytValue() As Byte Dim bytKey() As Byte…