欢迎光临!

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 27 下一页
  2011年4月13日
摘要: 现在看锋利的jquery....受益非浅....下面的这个..算是课堂笔记了...需要的同学可以拿了救急....css部分 <style type="text/css">.hide{display:none;} ul{list-style:none;} li{width:120px; float:left;}.tab_box div{border:1px solid #A0A0A4; width:500px; /*text-align:ecnter;*/ height:100px; line-height:100px;}.tab_menu{width:500px 阅读全文
posted @ 2011-04-13 16:52 花拉子米 阅读(253) 评论(0) 推荐(0) 编辑
摘要: jquery选项卡,带css样式的。支持ajax更新内容、页面同时出现多个tab选项卡而不影响其他选项卡内容。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>jquery tab 选项卡</title> <meta http-equiv="author" content="hoojo"> <meta http-equiv="d 阅读全文
posted @ 2011-04-13 15:52 花拉子米 阅读(1300) 评论(0) 推荐(0) 编辑
  2011年3月15日
摘要: ASP.NET 常用方法类 - PageBase 页面基类using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;namespace MyBlog.WEB{ public class PageBase 阅读全文
posted @ 2011-03-15 14:27 花拉子米 阅读(739) 评论(0) 推荐(0) 编辑
摘要: 1、索引好处:(1)提高查询表内数据的速度。(2)表与表之间的连接速度加快。坏处:(1)创建索引和维护索引都会消耗时间。(2)会占用一定物理空间,占用物理空间过多会影响整个SQL Server性能。建立索引的原则:(1) 主键的数据列一定要建立索引,因为主键可以加速定位到表中的某一行。(2) 外键的数据列一定要建立索引,外键列通常用于表与表之间的连接,在其上创建索引可以加快表间的连接速度。(3) 对于经常查询的数据列最好建立索引。索引分类:(1)聚集索引。(2)非聚集索引。(3)唯一索引。2、视图优点:(1) 数据保密,对不同的用户定义不同的视图,使用户只能看到与自己相关的数据。(2) 简化查 阅读全文
posted @ 2011-03-15 14:05 花拉子米 阅读(181) 评论(0) 推荐(0) 编辑
摘要: sql中引用变量我一直都不知道怎么弄,今天总算知道了:在asp.net中引用变量是"+变量名+"(双引双加),在sql中表示为'+变量名+'(单引单加<注意:拼接字符串本身需要一对单引号...sql中单引号为转义字符,两个单引号代表一个单引号>)...个人理解,如有错误,欢迎指出...declare @a varchar(20),@b varchar(200)set @a='chai' /*字符类型赋值必须要单引号*/print @aprint ('select * from products where productn 阅读全文
posted @ 2011-03-15 13:51 花拉子米 阅读(1699) 评论(0) 推荐(0) 编辑
  2010年10月20日
摘要: 一、单据基础模板1、ICTransactionType:该表反映了供需链所有单据的总体情况。2、ICClassType:单据类别表3、ICTemplate:该表反映了所有单据的表头的详细情况。4、ICTemplateEntry:该表反映了所有单据的分录的详细情况。二、单据选单模板1、ICSelbills:记录选单关系的表。选单要取得哪些值,这些值是如何而来的,以及需回填到哪个对应的控件里。2、IC... 阅读全文
posted @ 2010-10-20 13:11 花拉子米 阅读(897) 评论(0) 推荐(0) 编辑
摘要: 用于KIS专业版,K310.4 其他版本测试使用 select distinct id from 表名distinct是过滤掉重复的记录字段信息表select * from ICTransactionTypeselect * from ICTemplateselect * from ICTemplateEntryICTransactionType 主要业务单据表ICTemplate 单据表头字段描... 阅读全文
posted @ 2010-10-20 13:02 花拉子米 阅读(2068) 评论(0) 推荐(0) 编辑
  2010年9月23日
摘要: IE8中打开FTP站点 来源:微软官网[点击放大] 阅读全文
posted @ 2010-09-23 13:12 花拉子米 阅读(3310) 评论(0) 推荐(0) 编辑
  2010年7月20日
摘要: 数据库:SQL Server2000Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--CREATEPROCEDURE[dbo].[au_XLS2TMP]@sheetNVARCHAR(50)='UserList'ASDECLARE@STRVARCHAR(2... 阅读全文
posted @ 2010-07-20 18:58 花拉子米 阅读(398) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.... 阅读全文
posted @ 2010-07-20 18:56 花拉子米 阅读(168) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 27 下一页
版权所有