乏mily

导航

上一页 1 ··· 3 4 5 6 7

2013年10月9日 #

jQuery 1.7_20120209 学习笔记

摘要: html([val|fn])parameters:function(index,html)此函数返回一个html字符串,接受两个参数,index为元素在集合中的索引位置,html为原先的html值。example:$("p").html();$("p").html("Hello world!");$("p").html(function(n){ return "这个P元素的index是:" + n; })index([selector|element]),搜索匹配的元素,并返回相应元素的索引值, 阅读全文

posted @ 2013-10-09 17:34 乏mily 阅读(179) 评论(0) 推荐(0) 编辑

2013年10月8日 #

.net 小问题集结

摘要: 1 .net中新建的项目,调试时,提示"由于未在web.config文件中启用调试,因此无法在调试模式下运行该页。您希望做什么?" 解决办法: 在web.config文件中,将<compilation debug="false">改为true; 阅读全文

posted @ 2013-10-08 15:31 乏mily 阅读(158) 评论(0) 推荐(0) 编辑

2013年9月29日 #

无刷新 checkbox列表的删除

摘要: 前台 JS : function ModelDelete() { var checkvalues = null; var checValue = $("#dom1").find(":checkbox"); for (var i = 0; i 后台代码: [WebMethod]//删除临时信息 public static string TemDetele(string TemID) { XieKe.BLL.tb_PlanDetail tplan = new X... 阅读全文

posted @ 2013-09-29 10:36 乏mily 阅读(216) 评论(0) 推荐(0) 编辑

2013年9月17日 #

在T-SQL中访问远程数据库(openrowset、opendatasource、openquery)

摘要: 1. 启用Ad Hoc Distributed Queries 在使用openrowset/opendatasource前要先启用Ad Hoc Distributed Queries服务,因为这个服务不安全,a56爆大奖在线娱乐SqlServer默认是关闭的。也就是说: SQL Server 阻止了对组件 'Ad 阅读全文

posted @ 2013-09-17 16:50 乏mily 阅读(348) 评论(0) 推荐(0) 编辑

同一服务器 数据库间 不同表 的查询

摘要: 1.两张表之间无联系:select A.ID,A.UserName from DB1.dbo.Table1 A where A.Account='admin'unionselect B.ID,B.UserName from DB2.dbo.Table2 B where B.Account='admin'2.两张表之间有联系:select * from DB1.dbo.Table1 A , DB2.dbo.Table2 Bwhere A.Account = B.ID-------- or -------select * from DB1.dbo.Table1 Ai 阅读全文

posted @ 2013-09-17 09:49 乏mily 阅读(246) 评论(0) 推荐(0) 编辑

2013年9月5日 #

分页 存储过程 带分组

摘要: set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgoALTER PROCEDURE [dbo].[usp_PagingLarge]@TableNames VARCHAR(200), --表名,可以是多个表,但不能用别名@PrimaryKey VARCHAR(100), --主键,可以为空,但@Order为空时该值不能为空@Fields VARCHAR(200), --要取出的字段,可以是多个表的字段,可以为空,为空a56爆大奖在线娱乐select *@PageSize INT, --每页记录数@CurrentPage IN... 阅读全文

posted @ 2013-09-05 11:04 乏mily 阅读(324) 评论(0) 推荐(0) 编辑

2013年8月21日 #

Repeater控件的分页效果

摘要: <webdiyer:AspNetPager ID="AspNetPager1" runat="server" HorizontalAlign="Center" OnPageChanged="AspNetPager1_PageChanged" Width="100%" FirstPageText="首 阅读全文

posted @ 2013-08-21 17:47 乏mily 阅读(229) 评论(0) 推荐(0) 编辑

2013年8月19日 #

多个a56爆大奖在线娱乐框的提示功能

摘要: 1 2 3 New Document 4 5 44 45 46 47 多个a56爆大奖在线娱乐框的提示功能 多个a56爆大奖在线娱乐框 48 49 50 51 名称1: 52 53 54 名称2: 55 56 57 ... 阅读全文

posted @ 2013-08-19 10:49 乏mily 阅读(227) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7