home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 September / PCWorld_2003-09_cd.bin / Software / Vyzkuste / webmatrix / WebMatrix.msi / Data1.cab / _10E067870B384331BEA621F3CFCBEB62 < prev    next >
Encoding:
Text File  |  2003-05-01  |  361 b   |  14 lines

  1. <%@ WebService language="VJ#" class="%%ClassName%%" %>
  2.  
  3. import System.*;
  4. import System.Web.Services.*;
  5. import System.Xml.Serialization.*;
  6.  
  7. public class %%ClassName%% {
  8.  
  9.     /** @attribute WebMethod(CacheDuration=30)
  10.     */
  11.     public String TimeStampForOutputCache() {
  12.         return "Output Cached at: " + DateTime.get_Now().ToString("r");
  13.     }
  14. }