摘要: //x为变量/*一:在控件后台实现Response.Write("");二:在js中实现*/ 阅读全文
posted @ 2015-11-09 15:50 我_爱编程 阅读(437) 评论(0) 推荐(0) 编辑
摘要: js代码 漂亮的动画效果;在靠右上角:背景颜色为红,字体颜色为白色 滑动 变大 上移 缓慢渐变消失 1 function tishi() { 2 3 $("#tishi").attr("style", "border: 1px solid #000;position... 阅读全文
posted @ 2015-10-20 09:14 我_爱编程 阅读(1473) 评论(2) 推荐(0) 编辑
摘要: 1 2 isMarital = $('[name="isMarital"]:checked').val();3 4 isMarital == null //当radio选择为空的时候 isMarital 为null前台代码:1 是否已婚 :2 ... 阅读全文
posted @ 2015-10-20 09:03 我_爱编程 阅读(1797) 评论(0) 推荐(0) 编辑
摘要: http://www.jb51.net/article/16884.htm 阅读全文
posted @ 2015-09-15 10:43 我_爱编程 阅读(9228) 评论(0) 推荐(0) 编辑
摘要: 多表查询存储过程 ;看懂了应该会有所收获 1 -- Description: 根据条件查询金融产品信息。 2 -- ============================================= 3 ALTER PROCEDURE [dbo].[SearchProduct] ... 阅读全文
posted @ 2015-09-01 16:17 我_爱编程 阅读(1906) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-08-20 09:05 我_爱编程 阅读(5) 评论(0) 推荐(0) 编辑
摘要: SET NOCOUNT ON; declare @I_PCity table ( IPStart nvarchar(255), Area nvarchar(255), CityID int, IPID int ... 阅读全文
posted @ 2015-08-13 16:06 我_爱编程 阅读(496) 评论(0) 推荐(0) 编辑
摘要: byte[] bt = new byte[] { 10, 11, 33, 44, 2 }; string str=string.Join(",",bt.Select(t=>t.ToString()).ToArray()); Console.Write(st... 阅读全文
posted @ 2015-08-12 14:10 我_爱编程 阅读(1475) 评论(1) 推荐(0) 编辑
摘要: string ipFilePath = @"~/App_Data/QQWry.dat"; QQWryLocator QQWry = new QQWryLocator(Server.MapPath(ipFilePath)); IPLocation lo... 阅读全文
posted @ 2015-08-11 10:40 我_爱编程 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 SET NOCOUNT ON; 2 declare @taba table( 3 CityD int , 4 Cityame nvarchar (50) 5 ) 6 insert into @tab... 阅读全文
posted @ 2015-08-07 17:00 我_爱编程 阅读(266) 评论(0) 推荐(0) 编辑