选择复选框值

编程入门 行业动态 更新时间:2024-10-27 18:26:32
本文介绍了选择复选框值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个asp:Calendar控件,并在日历显示时动态地显示每个日期,我在其旁边添加了一个复选框.

I've a asp:Calendar control and to each date, dynamically when the calendar renders i'm adding a checkbox next to it.

根据我需要,用户可以选中和取消选中该复选框.将检查的日期发送给我数据库.

The user can check and uncheck the checkbox , based on that i need to send the checked dates to my database.

现在,我的问题是我不知道该用什么来收集日期列表以将其发送到数据库,请问这方面我可以帮忙

Now, my problem is that i have no idea what to use to collect the dates list to send it to database, can you guys please help me in this aspect

仅供参考,我提供的是日历Dayrender事件中使用的代码

FYI, i am giving the code which i have used in the Calendar Dayrender Event

受保护的空白LunchCalendar_DayRender(对象发送者,DayRenderEventArgs e) { e.Cell.Text ="; CheckBox c = new CheckBox(); e.Cell.Controls.Add(c); c.Text = e.Day.DayNumberText; 如果(e.Day.IsOtherMonth) { e.Cell.Text = null; } 如果(e.Day.IsWeekend) { c.Checked = true; c.Enabled = false; } }

protected void LunchCalendar_DayRender(object sender, DayRenderEventArgs e) { e.Cell.Text = ""; CheckBox c = new CheckBox(); e.Cell.Controls.Add(c); c.Text = e.Day.DayNumberText; if (e.Day.IsOtherMonth) { e.Cell.Text = null; } if (e.Day.IsWeekend) { c.Checked = true; c.Enabled = false; } }

我们将不胜感激.

推荐答案

谢谢您的发帖!  ;我建议将您的问题发布到MS论坛之一中

Thank you for your post! I would suggest posting your question in one of the MS Forum

首页 › ASP.NET论坛 » 常规ASP.NET » Web表单 Home › ASP.NET Forums » General ASP.NET » Web Forms

更多推荐

选择复选框值

本文发布于:2023-11-06 16:01:50,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1564150.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:复选框

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!