tags:

views:

35

answers:

2

I have a website and I want to include a "Last Compile Time: XX:XX:XX" in the footer of the website. Is there an automated way to alter the contents of an asp:label at compile time?

+4  A: 

You could use reflection to find the current assembly and get the last write time. Then you could either bind the Text property of your current label, or set it in the Page Load.

File.GetLastWriteTime(Assembly.GetExecutingAssembly().Location)

Or you could use UTC

File.GetLastWriteTimeUtc(Assembly.GetExecutingAssembly().Location)
Yuriy Faktorovich
Thanks for a nice answer.
Chuck
A: 

We typically use the creation time of the assembly. It seems depending on the install the last write times may differ.

File.GetCreationTimeUtc(System.Reflection.Assembly.GetExecutingAssembly().Location)
Bryan Allred