摘要: json数据:[ { "AttributeSetsID": "29", "AttributeSetsValues": "主体", "children": [ { "AttributeID": "25", "AttributeValues": "尺寸" }, { "AttributeID": "26"... 阅读全文
posted @ 2014-09-29 13:57 M i S s 阅读(115) 评论(0) 推荐(0) 编辑
摘要: ALTER PROCEDURE [dbo].[AddRoleRight]( @menuinfostr VARCHAR(max), @role INT)AS declare @StrSeprate varchar(2) set @StrSeprate=',' declare @ch int -- as... 阅读全文
posted @ 2014-09-17 18:32 M i S s 阅读(128) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE [dbo].[GoodsCategories]( [ID] [int] NOT NULL, [ClassName] [nvarchar](20) NOT NULL, [ParentID] [int] NOT NULL, [Depth] [int] NOT NULL, [Ro... 阅读全文
posted @ 2014-08-27 10:34 M i S s 阅读(329) 评论(0) 推荐(0) 编辑
摘要: CREATE PROCEDURE [dbo].[GoodsCategories_Insert]@parentId int, --父类Id@className nvarchar(50) --分类名称ASBEGIN SET NOCOUNT ON; --不返回计数(表示受 Transact-SQL 语句影... 阅读全文
posted @ 2014-08-25 09:42 M i S s 阅读(302) 评论(0) 推荐(0) 编辑
摘要: alter FUNCTION f_Cid(@ID int)RETURNS @t_Level TABLE(ID int,Level int)ASBEGINDECLARE @Level intSET @Level=1INSERT @t_Level SELECT @ID,@LevelWHILE @@ROW... 阅读全文
posted @ 2014-08-20 20:37 M i S s 阅读(174) 评论(0) 推荐(0) 编辑
摘要: declare @time datetimedeclare @ms intset @time= getdate()select ID,name from (select row_number() over(order by ID) as rowNum,* from dbo.testb) as t ... 阅读全文
posted @ 2014-08-20 20:34 M i S s 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 一、首先检查config文件里面是否包含这两个节点 二、配置IIS。 1.打开IIS,选择网站。右键,点击属性! 2.选择主目录,点击配置按钮。 3.在弹出的应用程序配置中,点击添加。 4.在弹出的添加/编辑应用程序扩展名映射中,填写可执行文件。点击浏览,选择aspnet_isapi.dll这个DL... 阅读全文
posted @ 2014-07-24 09:55 M i S s 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-03-24 19:39 M i S s 阅读(73) 评论(0) 推荐(0) 编辑
摘要: function next(obj) { window.setTimeout(function () { intervalRun(obj); }, 2000); } function intervalRun(obj) { alert(obj); $(obj).parent().parent().siblings().hide(); $($(obj).parent().parent().next()[0]).show(); $(obj).parent().parent().hide(); } 阅读全文
posted @ 2014-03-17 19:53 M i S s 阅读(280) 评论(0) 推荐(0) 编辑
摘要: .box { position: fixed; top: 180px; right: 300px; width: 230px; height: 600px; background: #EEE; cursor: move; } 题号 选项 " value="A" value1="" />A" value="B" value1="" />B" value="C" value1="" />C" value="D&q 阅读全文
posted @ 2014-03-14 18:06 M i S s 阅读(105) 评论(0) 推荐(0) 编辑