07 2013 档案

摘要:private static readonly byte[] _keys = { 0x22, 0x84, 0x56, 0x98, 0x90, 0xAB, 0xpD, 0xEF }; private static readonly byte[] _ivs = { 0xAB, 0xCD, 0xEF, 0x12, 0x34, 0x56, 0x78, 0x90 }; /// /// 加密字符串 /// /// 待加密字符串 /// public string Encrypt(string pToEn... 阅读全文
posted @ 2013-07-11 14:26 itor 阅读(265) 评论(0) 推荐(0)
摘要:存储过程:CREATE PROCEDURE [dbo].[UP_PurchasexxxCard] @OrderInfo XMLASBEGIN SET NOCOUNT ON; DECLARE @DateNow Datetime; DECLARE @OrderNumber BIGINT;--订单编号 DECLARE @CustomerID INT;--用户编号 DECLARE @Amount DECIMAL(18,2);--订单金额 DECLARE @PaymentMethodCode VARCHAR(4);--支付方式 DECLAR... 阅读全文
posted @ 2013-07-01 14:23 itor 阅读(1414) 评论(0) 推荐(0)