Advertisement
Advertisement
| 03.12.2008 at 01:25PM PDT, ID: 23236600 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
namespace myproject.app_code
{
public class dateclass
{
public static string getTodaysDate()
{
(some code....)
}
}
}
what I would like to be able to do in aspx file:
<% Response.Write(getTodaysDate()) %>
|