asp.net
文章平均质量分 78
cao_david
从事软件开发与设计,主要以做项目为主
展开
-
3D玩法最优算法
private string[] big ={ "5", "6", "7", "8", "9" };//大 private string[] small ={ "0", "1", "2", "3", "4" };//小 private string[] primeNumber ={ "1", "2", "3", "5", "7" };//质数 priv原创 2007-06-08 12:02:00 · 3297 阅读 · 0 评论 -
asp.net中实现分页
使用空降AspNetPager.dll http://download1.csdn.net/down3/20070608/08120841823.rar页面头加上 分页部分 showcustominfosection="Left" width="37%" meta:resourceKey="AspNetPager1" style=font-size:12px原创 2007-06-08 12:09:00 · 942 阅读 · 0 评论 -
使用sqlserver2000存储过程分页小例
CREATE PROCEDURE spu_SELECT_All_ARTICLE_BY_ARTICLECLASS_PAGE( @articleClass int, @fldName varchar(15)=createTime, @PageSize int = 10, -- 每页显示记录数 @PageIndex int = 1,原创 2007-06-14 09:52:00 · 578 阅读 · 0 评论 -
datagrid的增删查改 aspx部分代码
aspx页面代码: 零件/工时 父类型 Parent Type : 主要零件 Main Parts 机械零件&nb原创 2007-06-14 09:17:00 · 605 阅读 · 0 评论 -
datagrid的增删查改 aspx.cs部分代码
//说明:这里有三个部分“Main Parts”,“Mechanical Parts”,“Labour”都有添加、修改、删除,模糊查询方法(由于这三个部分都是存放在一张表中的所以操作方法都相同,只是个别字段不同)private void ddlBind(string str) { //"Parts" //"Mechanical Parts" comCodeEngine codeE原创 2007-06-14 09:27:00 · 859 阅读 · 1 评论