This file contains 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
// Thanks to Enrico Ariel @ http://www.youtube.com/watch?v=Kp4jxrs6uuI | |
//The codebehind: | |
[WebMethod] | |
public static string GetValues(string value) | |
{ | |
value = value +" - Sent @ " + DateTime.UtcNow.ToLongTimeString(); | |
return value; | |
} |