开发者

Checkbox - pass values

开发者 https://www.devze.com 2023-01-15 04:31 出处:网络
I have a page with a checkbox that is populated from a sql. The table on the sql is setup as follows.

I have a page with a checkbox that is populated from a sql. The table on the sql is setup as follows.

sopid, Type, DisplayOrder, Deleted.
1      test1  1 开发者_开发技巧           False
2      test2  2            False

What i want to do is if check test1 and test2 for example it outputs the sopID to a textbox in the following manor - 1,2 etc... Also if i untick one it removes it from the textbox as well.

Thanks


The deleted column i guess is a boolean, so you could set an int in your code and pass the values in form of 1 and 0. You could do something like:

int i = 0;
if (checkBox1.Checked) 
{
   i = 1;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消