如何在asp.net中准备考勤表?

发布于 2024-12-11 21:35:05 字数 67 浏览 0 评论 0原文

我想添加一张出勤表用于人力资源记录目的,其中保存不同员工的出勤情况。然后我必须在搜索各个字段时检索不同页面上的这些记录。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

末蓝 2024-12-18 21:35:06

这更像是一个数据库设计问题,而不是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 enter image description here

逐鹿 2024-12-18 21:35:05

如果您使用gridview来完成任务,您可以使用SQLDataSource控件,它允许您执行不同的命令,例如insert编辑更新

这里你可以使用 GridView.DataBind 方法将数据绑定到你的gridview

关于在Asp.Net GridView控件中简单插入、选择、编辑、更新和删除的文章将给出你有更好的主意

If you are using a gridview to accomplish your task you can use the SQLDataSource control which will allow you to perform different commands like insert, edit and update.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文