Use the global.asax file and listen to the PostRequestHandlerExecute event of the Global object.
In the handler Global_PostRequestHandlerExecute write the following code
VB.NET
Response.Write('This page is updated on ' & DateTime.Now.ToString())
Response.Write('This page is updated on ' + DateTime.Now.ToString());
Share with