如何在asp.net中准备考勤表?
我想添加一张出勤表用于人力资源记录目的,其中保存不同员工的出勤情况。然后我必须在搜索各个字段时检索不同页面上的这些记录。
I want to add a attendance sheet for HR record purpose, where they save attendance of different employees. Then I have to retrieve those records on different pages on searching respective fields.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这更像是一个数据库设计问题,而不是asp.net。从简单的设计开始,首先您需要有一个员工表(称为员工),其中包含所有员工姓名和员工信息。其次是考勤表,记录每个员工的考勤情况。请参阅我的示例架构
This is rather a database design question then asp.net. Starting from a simple design, first you need to have an Employee table (Call it Employees) with all employee names & secondly an attendance table which will record each employee attendance. Refer to my sample schema
如果您使用
gridview
来完成任务,您可以使用SQLDataSource
控件,它允许您执行不同的命令,例如insert
、编辑
和更新
。这里你可以使用 GridView.DataBind 方法将数据绑定到你的
gridview
。关于在Asp.Net GridView控件中简单插入、选择、编辑、更新和删除的文章将给出你有更好的主意
If you are using a
gridview
to accomplish your task you can use theSQLDataSource
control which will allow you to perform different commands likeinsert
,edit
andupdate
.Here you can use GridView.DataBind Method to bind data to your
gridview
.The article about Simple Insert, Select, Edit, Update and Delete in Asp.Net GridView control will give you a better idea of doing