Skip to main content

Posts

Showing posts from July, 2012

How to Run a function periodically in Google Apps Script

Introduction: In my previous article I have explained about Reading querystringvalue using javascript . I n this article I am going to explain about how execute a google app script function periodically   Explanation: To execute a function periodically first we have to configure a trigger to that function . Then that trigger will run the function as mentioned. Below is the sample code

C# code to upload file to ftp server

Introduction: In my previous article I have explained about Auto refresh page using javascript . In this article I am going to explain about how to upload file to ftp server using c# code Explanation: The code uses FileInfo and FtpWebRequest classes. To use this classes include the below two namespaces in the code first.