清清海水

得不到的就是喜欢
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

随笔分类 -  C#

摘要:DataGrid/DataList, 你会用了吗? By icyer from CSDN很久以前就想写一些关于DataGrid/DataList的东西,但是一直以来,一方面自感所学未深,另一方面,总觉无从下笔,一拖再拖,离刚开始的念头已距一年有余。DataGrid/DataList在ASP.NET中的重要性,想必就不用我再强调了,凡显示Table类型的数据,大多会使用这两个控件(当然,如果谁还像A... 阅读全文

posted @ 2005-08-16 11:17 清清 阅读(261) 评论(0) 推荐(0)

摘要:初学C#+ASP.NET+Oracle时积累的备忘点滴 Posted on 2005-08-11 13:18 Zeus 阅读(22) 评论(0) 编辑收藏 在asp.net中,如何回车触发指定按钮的事件?假设:<asp:TextBox id="TextBox1" runat="server" Width="240px"></asp:TextBox><asp:Butt... 阅读全文

posted @ 2005-08-11 13:51 清清 阅读(571) 评论(0) 推荐(0)

摘要://C# DataGrid with DataSetusing System; using System.Data; using System.Data.SqlClient; using System.Drawing; using System.Windows.Forms; public class DataGridSample:Form{ DataGrid myGrid; SqlConnect... 阅读全文

posted @ 2005-08-08 21:49 清清 阅读(821) 评论(0) 推荐(0)

摘要:C#函数 1、DateTime数字型System.DateTimecurrentTime=newSystem.DateTime();1.1取当前年月日时分秒currentTime=System.DateTime.Now;1.2取当前年int年=currentTime.Year;1.3取当前月int月=currentTime.Month;1.4取当前日int日=currentTime.Day;1.5... 阅读全文

posted @ 2005-08-05 17:23 清清 阅读(243) 评论(0) 推荐(0)