摘要: USE [MogoData355]GO/****** 对象: Trigger [dbo].[UserWithdrawOrderStatus] 脚本日期: 07/05/2013 14:17:51 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER TRIGGER [dbo].[UserWithdrawOrderStatus] ON [dbo].[User_Withdraw_Detail] AFTER UPDATEAS BEGIN SET NOCOUNT ON; DECLARE @Count ... 阅读全文
posted @ 2013-07-15 14:20 l25321937 阅读(191) 评论(0) 推荐(0)
摘要: USE [MogoData355]GO/****** 对象: Table [dbo].[User_Withdraw_Order] 脚本日期: 07/05/2013 13:21:34 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TABLE [dbo].[User_Withdraw_Order]( [ID] [int] IDENTITY(10000,1) NOT NULL, [UID] [uniqueidentifier] NULL, [CreateDate] [smalldatetime] NUL... 阅读全文
posted @ 2013-07-15 13:25 l25321937 阅读(189) 评论(0) 推荐(0)
摘要: delete from User_Withdraw_Detaildelete from User_Withdraw_Orderdelete from User_Withdraw_Reviewselect * from User_Withdraw_Reviewinsert into User_Withdraw_Review(ID,UWID,UWDID,[Date],WID,[Status],Invoice,Note)select ID,UW_ID,0 ,[Date],W_ID,Status,Invoice,Note from WithdrawReviewset identity_insert U 阅读全文
posted @ 2013-07-14 17:00 l25321937 阅读(257) 评论(0) 推荐(0)
摘要: http://msdn.microsoft.com/zh-cn/library/vstudio/acdd6hb7.aspx 阅读全文
posted @ 2013-06-09 10:09 l25321937 阅读(154) 评论(0) 推荐(0)
摘要: JavaScript replace() 方法 阅读全文
posted @ 2013-04-01 13:42 l25321937 阅读(195) 评论(0) 推荐(0)
摘要: <script type="text/javascript">/* * 获取ID方法 */function $cz(id){ return document.getElementById(id);};/* * 创建XMLHttpRequest对象 */function createXMLHTTP(){ var getXMLHTTP;if(window.ActiveXObject){getXMLHTTP = new ActiveXObject("Microsoft.XMLHTTP");}else {getXMLHTTP = new XMLHtt 阅读全文
posted @ 2013-03-14 15:46 l25321937 阅读(1217) 评论(0) 推荐(0)
摘要: 今天使用jquery的时候使用脚本提交表单$("#submit").submit();然后就出现了:Property 'submit' of object # is not a function网上查了下原因:说是form里面有个name="submit"的按钮导致submit()方法和button的name混淆然而我的却不是name,二是id为 "submit"再次补充下,无论是name还是id为"submit"都是不行的,只要把submit改掉就OK 了,我改成了"Submit&quo 阅读全文
posted @ 2013-03-13 16:29 l25321937 阅读(214) 评论(0) 推荐(0)