摘要:
今天看了一下同事写的分页代码 虽然效率不高 但是比我的简单多了数据量小的首选(别忘了定义gridview的pagesize)protected void LinkButton1_Click(object sender, EventArgs e) { GridView1.PageIndex = 0; BusinessWork BusinessWork = n... 阅读全文
摘要:
public int AddArticleModel(int articleID, string TitleText, string DescriptionText, DateTime CreateDate, string CreateUserText, int DepartmentText, string KeyWordText, int SetTopText) {... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; using System.Data.SqlClient; using System.Data; using System.Configuration; namespace DBUtility { public class SQLHelper { ... 阅读全文