做最好的自己~~

Be My Personal Best!

导航

2008年5月31日 #

我的简易 数据存取器 的封装

摘要: #region 数据存取器 /// /// 保存数据 /// public static string theYear; public string SetYear { set { theYear = value; } get { ... 阅读全文

posted @ 2008-05-31 21:18 阿万 阅读(431) 评论(3) 推荐(0) 编辑

JavaScript 常用语句总结

摘要: 最近做了一个工资管理系统,大部分采用asp.net 2.0提供的控件发现虽然方便,但还是有好多地方是一定要采用JavaScript才能实现功能的。。 对于这个项目常用到的一些脚本我做了如下总结:1。。//执行客户端脚本,makeSure()是客户段的脚本函数: ClientScript.RegisterStartupScript(this.GetType(), "", "<script>... 阅读全文

posted @ 2008-05-31 21:13 阿万 阅读(1180) 评论(2) 推荐(0) 编辑

dataGridView中的数据操作

摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namesp... 阅读全文

posted @ 2008-05-31 04:14 阿万 阅读(1395) 评论(2) 推荐(0) 编辑