强制Checkbox返回整数而不是布尔值

强制Checkbox返回整数而不是布尔值

本文介绍了强制Checkbox返回整数而不是布尔值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




使用V Web 2005:

我在页面上有复选框。如果未选中该框,我想存储0或者如果存在则存储1(作为整数 - 因为sql表

最终将被其他无法处理布尔值的软件使用)。 br />
" CBAnswer1.Checked.tostring"给我真实或假这样就不行了。下面的代码可以做我想要它做的事情(使用函数对SQL表进行实际更新) - 但是必须有更多的直接来自
直接初始化复选框的方法,以便返回整数1而不是布尔值true的东西。如果检查了

(因为我必须多次这样做)。


Dim A1 As Integer = 0

如果CBAnswer1.Checked然后

A1 = 1:结束如果

ReadAndStoreIntAnswer(A1," XXX")


有什么想法吗?


提前致谢


Jeff


-

通过上的免费Usenet帐户发布



Using V Web 2005:
I have checkbox on a page. I want to store either 0 if the box is not checked or 1 if it is (as integers - because the sql table
will ultimately be used by other software that can''t handle booleans ).
"CBAnswer1.Checked.tostring" gives me "True" or "False" so that won''t work. The code below works to do what I
want it to do (using a function to do the actual update to an SQL table) - but there must be a more
direct method to initialize the checkbox so that something that returns an integer 1 instead of the boolean "true" if it is checked
(as I have to do this multiple times).

Dim A1 As Integer = 0
If CBAnswer1.Checked Then
A1 = 1 : End If
ReadAndStoreIntAnswer(A1, "XXX")

Any ideas?

Thanks in advance

Jeff

--
Posted via a free Usenet account from http://www.teranews.com

推荐答案






这篇关于强制Checkbox返回整数而不是布尔值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 17:33