- 博客(56)
- 收藏
- 关注
转载 c#支付宝支付
1、进入支付宝去申请appid和密钥 https://open.alipay.com/platform/home.htm 支付宝开放平台2、下载sdk根据自己是啥开发语言下载啥3、开始写代码 后台请求参数和方式 /// <summary> /// 支付宝支付 /// </summary> /// <...
2018-08-14 13:54:00 474
转载 读取接口
public string orderapi(string hicardMerchNo, string hicardOrderNo,string merchOrderNo) { string payTime = System.DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss"); string key = "验证密...
2017-07-04 14:20:00 261
转载 倒计时
<!doctype html><html><head><meta charset="utf-8"><title>jquery版的网页倒计时效果</title><style type="text/css">h1 { font-family:"微软雅黑"; font-size:40px; margin:20p...
2017-06-21 16:06:00 149
转载 新建的mvc项目运行之后报错找不到页面
新建的mvc项目运行之后报错找不到页面一定要先查看路径是否正确,一个controller 在view中 这个controller要对应一个文件夹.比如homecontroller 在视图view中就要建一个文件夹来放home对应的视图转载于:https://www.cnblogs.com/superMay/p/7047917.html...
2017-06-19 11:26:00 446
转载 sql向表中添加字段
--关于我们if not exists (select * from syscolumns where id = object_id('dbo.[表名]') and name = 'aboutUs')begin alter table表名add aboutUs text NOT NULL DEFAULT('') with values --关于我们end转载于:https://...
2017-04-20 09:42:00 351
转载 取小数点后面几位数
<td>@item.qty.ToString("F0")</td>//取整数 <td>@item.total.ToString("F2")</td>//取小数点后两位转载于:https://www.cnblogs.com/superMay/p/6627788.html...
2017-03-27 17:27:00 289
转载 H5拨打电话
<a href="tel:电话号码">拨打电话</a>转载于:https://www.cnblogs.com/superMay/p/6529816.html
2017-03-10 11:35:00 93
转载 jq动态生成数据后绑定事件
$(".two").on("click","div span",function(){ $(this).css("border","5px solid #000");});转载于:https://www.cnblogs.com/superMay/p/6515249.html
2017-03-07 16:04:00 154
转载 string转换成byte[]
string sdata = "我是一个字符串";Encoding code = Encoding.GetEncoding("utf-8");byte[] buffer = code.GetBytes(sdata);转载于:https://www.cnblogs.com/superMay/p/6418332.html
2017-02-20 10:08:00 522
转载 取出dictionary中的值
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=...
2017-02-14 15:29:00 850
转载 c#生成二维码
String link ="www.baidu.com";//这里一般是一个链接封装后的方法,直接调用就可以了public void CreateQRCode(string content) { var qrCodeEncoder = new QRCodeEncoder { QRCodeEncode...
2017-01-06 15:21:00 94
转载 sql查找去重复并且字段不为空的数据
select distinct username,quantity from Student where isnull(username,'')<>'' and p_id = {1}转载于:https://www.cnblogs.com/superMay/p/6197975.html
2016-12-19 16:29:00 981
转载 icomoon图标的使用
这里的图标可以自己定义网址:https://icomoon.io/app/#/select/定义完后,自己下载下来引用: <link href="css/style.css" rel="stylesheet" />这个样式就可以直接使用例如:<a class="icon-user-tie" >会员中心</a>转载于:https://...
2016-12-16 10:10:00 118
转载 网上商城自动定位到最近的自提地点
其实就是根据经纬度来计算最短的距离 <nav onclick="TabControl_Either_Go();" style="right:0%;"> <div> <img id="goGo_id" src="Pics/Go.png" alt="上门" /> ...
2016-12-15 11:06:00 214
转载 jq添加数组
var array=new Array();array.push(值); //向数组中添加值array.shift(值);//向数组中移除值转载于:https://www.cnblogs.com/superMay/p/6025850.html
2016-11-03 11:18:00 166
转载 tfs连不上团队资源管理器问题
这个问题主要原因是因电脑装了vs2008又装了vs2012,因为版本不一样,所以只需要将VersionControl.config这个文件删除掉就可以了。文件路径C:\Users\Administrator\AppData\Local\Microsoft\Team Foundation\4.0\Cache转载于:https://www.cnblogs.com/superMay/p/5...
2016-10-25 15:14:00 267
转载 多个文件下载打包生成zip格式下载
这个多个文件下载生成zip格式必须先引用一个ICSharpCode.SharpZipLib.dll。代码如下//将多个文件打包成压缩文件zip格式下载 protected void PkgDownload(IEnumerable<string> files, string zipFileName) { MemoryStrea...
2016-10-24 10:47:00 280
转载 MVC中渲染页面
mvc中当返回的字符带有html代码的时候,可以直接使用@Html.Raw(Model.description)这句代码的意思就是返回不是html编码,因此用了这句代码就不需要单独再转换一次转载于:https://www.cnblogs.com/superMay/p/5960273.html...
2016-10-14 14:16:00 132
转载 搜索,并且缓存搜索历史记录
1、将关键字加入cookie缓存中 /// <summary> /// 添加搜索关键字 /// </summary> /// <param name="keyWord"></param> private void addKeyWord(string keyWord) ...
2016-09-12 16:24:00 226
转载 触发器
--创建insert插入类型触发器if (object_id('tgr_product_insert', 'tr') is not null) drop trigger tgr_product_insertgocreate trigger tgr_product_inserton products for insert --插入触发as if exists(se...
2016-09-07 10:31:00 123
转载 MVC验证session是否过期,在每个action执行之前验证
protected override void OnActionExecuting(ActionExecutingContext filterContext) { base.OnActionExecuting(filterContext); if (Session["wx_s_user"] == null) ...
2016-08-17 13:41:00 172
转载 int类型的正负数转换
int aid = -this.id; 不能直接转 必须先赋值给一个变量 int c = this.id; int a = c * (-1); this.id = a;转载于:https://www.cnblogs.com/superMay/p/5749620.html...
2016-08-08 15:51:00 4514
转载 表设置了自增后往里面插入不自增的id时的处理方法
SET IDENTITY_INSERT 表名 ON中间写insert语句,但是这里必须把列名更上SET IDENTITY_INSERT 表名 OFF转载于:https://www.cnblogs.com/superMay/p/5741658.html
2016-08-05 15:51:00 567
转载 关于当传过来的值转换成string类型报错的问题
有时候直接写 string str=request.param["str"].tostring;会报错,是因为接受到的值可能是空的这个时候就可以这样写string _action = string.Format("{0}", Request.QueryString["str"]);这样写就不会报错了转载于:https://www.cnblogs.com/superMay/p/5...
2016-08-05 11:44:00 249
转载 网站登录时记住密码
UI层一个登录框,一个密码框,一个验证码框 ,然后一个记住密码<div class="banner"> <div class="login-aside"> <div id="o-box-up" style="height:400px"></div> <div id="o-box-down" style="tabl...
2016-08-01 11:17:00 156
转载 奔跑的小马 动画效果
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>HTML5/CSS3奔跑动画DEMO演示</title><style>html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,bl...
2016-07-28 17:15:00 236
转载 日期控件jsdate用法注意事项
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><met...
2016-07-22 15:27:00 102
转载 百度地图
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><met...
2016-07-19 14:58:00 64
转载 地图定位
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><met...
2016-07-19 14:57:00 67
转载 H5播放器
<!DOCTYPE html><html><body><div style="text-align:center"> <button onclick="playPause()">播放/暂停</button> <button onclick="makeBig()">放大</button&...
2016-07-19 14:23:00 91
转载 上传文件
aspx<div class="tab-content" style="display:none"> <dl> <dt>资料名称</dt> <dd> <asp:TextBox ...
2016-07-08 10:32:00 132
转载 设置p标签自动换行
<body><pstyle="width:20px;height:100px;background-color:#069;word-wrap:break-word;">111111111111111111111111111111111111</p><pstyle="width:20px;height:100px;backg...
2016-07-02 10:19:00 1091
转载 上传文件的时候报长度超过限制长度
Server Error in '/' Application. Maximum request length exceeded. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack tr...
2015-12-14 13:17:00 575
转载 js文字滚动
<style type="text/css">#gongao{width:1000px;height:30px;overflow:hidden;line-height:30px;font-size:13px;font-family:'宋体';background:#DDE5ED;color:#0C77CF;font-weight:bold;}#gongao #scrol...
2015-12-08 14:11:00 107
转载 给一系列的div中的第一个添加class
$(".lb:first").addClass("active")转载于:https://www.cnblogs.com/superMay/p/5028566.html
2015-12-08 11:26:00 318
转载 自动获取省份
<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><script src="http://lib.sinaapp.com/js/jquery/1.8.3/jquery.min.js"></script> ...
2015-12-07 11:03:00 118
转载 随鼠标移动tab
<script language="javascript"> function tabChange(obj, id) { var arrayli = obj.parentNode.getElementsByTagName("li"); //获取li数组 var arrayul = document.getElement...
2015-12-04 09:51:00 75
转载 高考倒计时
<div class="collegeEntrance"><script language="JavaScript"><!-- Beginvar timedate= new Date("June 07,2016");//高考日期var times="高考";var now = new Date();var date = timedate.getTime() ...
2015-11-12 10:06:00 204
转载 外网不能访问图片的问题
.woffapplication/x-woff转载于:https://www.cnblogs.com/superMay/p/4953596.html
2015-11-10 17:00:00 1670
转载 js验证姓名和身份证号
js验证真实姓名,是用的unicode字符的来进行匹配,而中国人的姓名长度一般都是2-4,所以重复匹配{2,4}次1.js验证真实姓名 1 var regName =/^[\u4e00-\u9fa5]{2,4}$/; 2 if(!regName.test(name)){ 3 alert('真实姓名填写有误'); 4 return false; 5 } js验证身份证...
2015-10-15 15:43:00 295
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人