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?
Asked
Active
Viewed 687 times
2 Answers
5
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
- 67,283
- 14
- 105
- 142
0
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
- 606
- 4
- 5