Feb 13, 2003 #1 T tehon3299 Centurion Joined Jan 6, 2003 Messages 155 Location Liverpool, NY How can I mask an ASP input textbox so when a user submits it, say a DATE, I can have it write it to an SQL Table as MM-dd-yyyy?? Thanks
How can I mask an ASP input textbox so when a user submits it, say a DATE, I can have it write it to an SQL Table as MM-dd-yyyy?? Thanks
Feb 13, 2003 #2 D Derek Stone Exalted One Joined Nov 17, 2002 Messages 1,875 Location Rhode Island, USA Turn server-side validation on and validate the input text using the System.Text.RegularExpressions.Regex class.
Turn server-side validation on and validate the input text using the System.Text.RegularExpressions.Regex class.