摘要: 1、进入支付宝去申请appid和密钥 https://open.alipay.com/platform/home.htm 支付宝开放平台 2、下载sdk根据自己是啥开发语言下载啥 3、开始写代码 后台请求参数和方式 /// <summary> /// 支付宝支付 /// </summary> /// 阅读全文
posted @ 2018-08-14 13:54 小A爱吧 阅读(3337) 评论(0) 推荐(0) 编辑
摘要: table tr:nth-child(2n) { background: #EEF8F0; } table tr:nth-child(2n+1) { background: #C3FFC8; 阅读全文
posted @ 2015-04-14 15:40 小A爱吧 阅读(192) 评论(0) 推荐(0) 编辑
摘要: public string orderapi(string hicardMerchNo, string hicardOrderNo,string merchOrderNo) { string payTime = System.DateTime.Now.ToString("yyyy-MM-dd hh: 阅读全文
posted @ 2017-07-04 14:20 小A爱吧 阅读(189) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>jquery版的网页倒计时效果</title> <style type="text/css"> h1 { font-family:"微软雅黑"; font-size:40px; m 阅读全文
posted @ 2017-06-21 16:06 小A爱吧 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 新建的mvc项目运行之后报错找不到页面 一定要先查看路径是否正确,一个controller 在view中 这个controller要对应一个文件夹.比如homecontroller 在视图view中就要建一个文件夹来放home对应的视图 阅读全文
posted @ 2017-06-19 11:26 小A爱吧 阅读(495) 评论(0) 推荐(0) 编辑
摘要: --关于我们 if not exists (select * from syscolumns where id = object_id('dbo.[表名]') and name = 'aboutUs') begin alter table 表名 add aboutUs text NOT NULL D 阅读全文
posted @ 2017-04-20 09:42 小A爱吧 阅读(1701) 评论(0) 推荐(0) 编辑
摘要: <td>@item.qty.ToString("F0")</td>//取整数 <td>@item.total.ToString("F2")</td>//取小数点后两位 阅读全文
posted @ 2017-03-27 17:27 小A爱吧 阅读(225) 评论(0) 推荐(0) 编辑
摘要: <a href="tel:电话号码">拨打电话</a> 阅读全文
posted @ 2017-03-10 11:35 小A爱吧 阅读(322) 评论(0) 推荐(0) 编辑
摘要: $(".two").on("click","div span",function(){ $(this).css("border","5px solid #000"); }); 阅读全文
posted @ 2017-03-07 16:04 小A爱吧 阅读(204) 评论(0) 推荐(0) 编辑
摘要: string sdata = "我是一个字符串"; Encoding code = Encoding.GetEncoding("utf-8"); byte[] buffer = code.GetBytes(sdata); 阅读全文
posted @ 2017-02-20 10:08 小A爱吧 阅读(569) 评论(0) 推荐(0) 编辑
摘要: var dic=ViewBag.dic as Dictionary<string,List<TeenySoft.Web.Model.wx_shop.ProductInfo>>; if (dic!=null) { foreach (var item in dic.Keys) { <li style=" 阅读全文
posted @ 2017-02-14 15:29 小A爱吧 阅读(1011) 评论(0) 推荐(0) 编辑