Click to Rate and Give Feedback

  Switch on low bandwidth view
This page is specific to
.NET Framework 3.0

Other versions are also available for the following:
JScript
toUTCString Method (Windows Scripting - JScript)

Returns a date converted to a string using Universal Coordinated Time (UTC).

dateObj.toUTCString() 

The required dateObj reference is any Date object.

The toUTCString method returns a String object that contains the date formatted using UTC convention in a convenient, easily read form.

The following example illustrates the use of the toUTCString method.

function toUTCStrDemo(){
   var d, s;                   //Declare variables.
   d = new Date();             //Create Date object.
   s = "Current setting is ";
   s += d.toUTCString();       //Convert to UTC string.
   return(s);                  //Return UTC string.
}
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker