Posted on: 1/19/2015 4:01:41 AM | Views : 581

Hello everyone I have this small piece of code:
<div> &copy; 2014 - <script language="JavaScript" type="text/javascript"> now = new Date theYear = now.getYear() if (theYear < 1900) theYear = theYear + 1900 document.write(theYear) </script> example.net. All rights reserved. </div> I want the result to appear as
2014 - 2015 example.net. All rights reserved.
or whatever the current year it is now. However, when I got the email, it showed only
2014 - example.net. All rights reserved.
Here is how I fetch the footer from an html file.
Dim footer As String Dim htmlFooterPath As String = HttpContext.Current.Server.MapPath("~\template\email\footer.htm") ...

Go to the complete details ...