home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2003 February / PCWELT_02_2003.ISO / pcwsoft / Script-Tut.exe / scripts / myDate.wsc < prev    next >
Encoding:
Extensible Markup Language  |  2002-11-21  |  495 b   |  38 lines

  1. <?xml version="1.0"?>
  2. <component>
  3.  
  4. <registration
  5.     description="myDate"
  6.     progid="myDate.WSC"
  7.     version="1.00"
  8.     classid="{e457e54b-6938-4e3b-b481-ccee5d9cd960}"
  9. >
  10. </registration>
  11.  
  12. <public>
  13.     <method name="heute">
  14.     </method>
  15. </public>
  16.  
  17. <script language="JScript">
  18. <![CDATA[
  19.  
  20. var description = new myDate;
  21.  
  22. function myDate()
  23. {
  24.  
  25.     this.heute = heute;
  26. }
  27.  
  28. function heute()
  29. {    
  30.     var datum = new Date();
  31.     return datum.toLocaleDateString();
  32. }
  33.  
  34. ]]>
  35. </script>
  36.  
  37. </component>
  38.