Translate

22 Eylül 2021 Çarşamba

What is jQuery?

ightweight FootprintOnly 30kB minified and gzipped. Can also be included as an AMD moduleWhat is jQuery?jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.1$( "button.continue" ).html( "Next Step..." )Event HandlingShow the #banner-message element that is hidden with display:none in its CSS when any button in #button-container is clicked.1234var hiddenBox = $( "#banner-message" );$( "#button-container button" ).on( "click", function( event ) { hiddenBox.show();});AjaxCall...

5 Temmuz 2021 Pazartesi

C# ILE FTP ÜZERINDE DOSYA VE KLASÖR İŞLEMLERI

 Microsoftun bize hazır sundugu sınıflardan biri olan FtpWebRequest Class'ı  ile işlemlerimizi rahatlıkla yerine getirebiliyoruz. FtpWebRequest class'ımız System.Net  namespace'i altında bulunmaktadır. aşağıda gösterdigimiz kodları uygularken import etmeyi unutmayın. Bu sınıfımızın haricinde System.IO'yada ihtiyacımız olucak.FTP ile Dosya Gönderme01FileInfo filei= new FileInfo(“DosyaAdresi”);02string adres="domain veya server ipsi";03string path = adres + filei.Name;04FtpWebRequest FTP;05FTP = (FtpWebRequest)FtpWebRequest.Create(new path(path));06FTP.Credentials = new NetworkCredential("kullanıcıadı", "Şifre");07FTP.KeepAlive = false;08FTP.Method = WebRequestMethods.Ftp.UploadFile;09FTP.UseBinary = true;10FTP.ContentLength =...

Pages 71234 »
Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Powered by Blogger | Printable Coupons