Creating Batch Attendancehttp://forums.asp.net/t/1810174.aspx/1?Creating+Batch+AttendanceSat, 02 Jun 2012 19:34:42 -040018101745008984http://forums.asp.net/p/1810174/5008984.aspx/1?Creating+Batch+AttendanceCreating Batch Attendance <p>Hi,</p> <p>I need to develop a batch attendance page.</p> <p>For that, I am planning to create a table in my Sqlserver db which contains columns with <strong>client names</strong>,<strong> status</strong> (which states whether the client is present or absent).</p> <p>I need to display all the <strong>ClientNames</strong> in X-axis on the top, and weekdays (say, monday, tuesday, and so on) on y-axis on the left. The status should be displayed as present or absent in the respective client column for respective client. </p> <p>I don't know which control to use for this kind of scenario (which i didn't do anytime).</p> <p>Can anyone suggest how to get my task done?</p> 2012-06-02T18:55:27-04:005009007http://forums.asp.net/p/1810174/5009007.aspx/1?Re+Creating+Batch+AttendanceRe: Creating Batch Attendance <p>Hi,</p> <p>In my opinion the best format to display attendence would be:</p> <pre class="prettyprint">Client Name | Sun | Mon | Tue | Wed | Thu | Fri | Sat Abc | Yes | No | No | Yes | Yes | No | Yes Xyz | Yes | Yes | Yes | No | Yes | No | No</pre> <p>In this case, you can use any control Like GridView. I am sure you would be saving week days in your table also.</p> <p>Alternatively, if you want to use your format, you can use &lt;asp:Table&gt; control incapsulated with Label control. Then you can bind Label controls to db table's columns</p> 2012-06-02T19:34:42-04:00