本文介绍了使用SQL Server 2005将Empty MaskedTextBox值插入日期字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以我的形式

我的日期值有一个maskedtextbox,如果用户单击CURRENT Button,我的进程将忽略来自maskedtextbox的值为空的值,但是当用户单击PROCESS按钮时,maskedtextbox的值将包括在向我的sql服务器插入新记录中. />
我的maskedtextbox自定义默认值为"00/00/0000"
在运行时中,单击CURRENT按钮,maskedtextbox的值为"//"
如果用户单击处理",则maskedtextbox值将是用户输入的值.

当maskedtextbox为空或值为"//"时,我在保存到sql服务器时出错.

In my form,

I have a maskedtextbox for my date value, If a user clicks CURRENT Button, my process will ignore value from maskedtextbox which is empty, But when user clicks PROCESS button, value from maskedtextbox is included in inserting new record unto my sql server.

My customize default for maskedtextbox is "00/00/0000"
in runtime, and CURRENT button is click, maskedtextbox value is " / / "
If the user clicks PROCESS, maskedtextbox value will be what the User enters.

I''m having error saving to sql server when maskedtextbox is empty or value is " / /".

推荐答案



这篇关于使用SQL Server 2005将Empty MaskedTextBox值插入日期字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:37