Rank: Newbie Groups: Member
Joined: 7/28/2008 Posts: 2 Points: 6
|
i see the function like 'ToUnderscore' ,and i need a function can get the datetime to use in <summary> like
/// <summary> /// <remarks>myname datetime</remarks> /// </summary>
i did't see a document to show what function did the autocode have. or where to define a function.
so, i hope you could give me a function that can get the datetime or tell me where to define a function THX!
|
Rank: Administration Groups: Administration
Joined: 3/16/2008 Posts: 21 Points: 69 Location: Spain
|
You can always use .NET functions, like DateTime.Now(). For example:
MyName <%= DateTime.Now%>
or
MyName <%= DateTime.Now.ToString("yyyy/MM/dd")%>
Note the ASP.NET like syntax.
Hope this helps.
|
Rank: Newbie Groups: Member
Joined: 7/28/2008 Posts: 2 Points: 6
|
thank you ^_^ this does help
BTW: is that any .NET functions can use in the autocode ?
|