本文整理匯總了C#中System.Date.ToUTCString方法的典型用法代碼示例。如果您正苦於以下問題:C# Date.ToUTCString方法的具體用法?C# Date.ToUTCString怎麽用?C# Date.ToUTCString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Date
的用法示例。
在下文中一共展示了Date.ToUTCString方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: WriteCookie
public static void WriteCookie(String name, String value, Int32 days)
{
string expires = "";
if (days > 0)
{
Date date = new Date();
date.SetTime(date.GetTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.ToUTCString();
}
Document.Cookie = name + "=" + value + expires + "; path=/";
}
示例2: SetCookie
private static void SetCookie(string cookieName, string value, int expire)
{
Date expireDate = new Date();
expireDate.SetDate(expireDate.GetDate() + expire);
string cookieValue = value.Escape() + "; expires=" + expireDate.ToUTCString();
Document.Cookie = cookieName + "=" + cookieValue;
}