home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 September / PCWorld_2003-09_cd.bin / Software / Vyzkuste / webmatrix / WebMatrix.msi / Data1.cab / _FF4CBDE074D742C881E8DF2C546A04D6 < prev    next >
Encoding:
Text File  |  2003-04-28  |  324 b   |  13 lines

  1. <%@ WebService language="C#" class="%%ClassName%%" %>
  2.  
  3. using System;
  4. using System.Web.Services;
  5. using System.Xml.Serialization;
  6.  
  7. public class %%ClassName%% {
  8.  
  9.     [WebMethod(CacheDuration=30)]
  10.     public string TimeStampForOutputCache() {
  11.         return "Output Cached at: " + DateTime.Now.ToString("r");
  12.     }
  13. }