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
2010-10-30 01:37:03
Thanks for a nice answer.
Chuck
2010-10-30 04:30:26
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
2010-10-30 02:13:24