This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace Hossware.Extensions | |
| { | |
| public static class DateTimeExtensions | |
| { | |
| public static long SecondsSinceJanuary11970(this DateTime input) | |
| { | |
| TimeSpan timeSpan = input - new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Hoss Web</title> | |
| <meta name="viewport" content="width=device-width"> | |
| <script type="text/javascript" language="javascript"> | |
| function hossFunction() { | |
| document.getElementById('divFormHoss').style.display = ''; | |
| document.getElementById('divConfirmation').style.display = 'none'; |