会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
不用想名字
博客园
首页
新随笔
联系
管理
订阅
[置顶]
群号: 731738614 欢迎大家 加入学习分享群;多加一些群帮助群内的新人。相互学习;需要你的帮助;202108
摘要: 群号: 731738614 欢迎大家 加入学习分享群;多加一些群帮助群内的新人。相互学习;需要你的帮助;202108
阅读全文
posted @ 2021-08-19 15:34 GOGOGO陈
阅读(239)
评论(0)
推荐(0)
编辑
2019年7月8日
JS 页面繁简字转换
摘要: // 本js用于客户在网站页面选择繁体中文或简体中文显示,默认是正常显示,即简繁体同时显示// 在用户第一次访问网页时,会自动检测客户端语言进行操作并提示.此功能可关闭// 本程序只在UTF8编码下测试过,不保证其他编码有效// 以下参数大部分可以更改 //s = simplified 简体中文 t
阅读全文
posted @ 2019-07-08 13:34 GOGOGO陈
阅读(419)
评论(0)
推荐(0)
编辑
2018年7月16日
Java Pom.xml 详解
摘要: 阿豪聊干货
阅读全文
posted @ 2018-07-16 09:32 GOGOGO陈
阅读(3029)
评论(0)
推荐(0)
编辑
2018年3月27日
文件 日志 写入 与读取
摘要: private static string logPath = @"D:\LogS\Logs\"; public static string FloderPath { get { return logPath; } set { logPath = value; } } private static
阅读全文
posted @ 2018-03-27 15:25 GOGOGO陈
阅读(721)
评论(1)
推荐(0)
编辑
2018年3月20日
快递查询 C#
摘要: //电商ID private string EBusinessID = "1257164"; //电商加密私钥,快递鸟提供,注意保管,不要泄漏 private string AppKey = "63a33b7c-464c-4de6-b4a3-6e1fc19da51c"; //请求url privat
阅读全文
posted @ 2018-03-20 16:23 GOGOGO陈
阅读(1507)
评论(3)
推荐(1)
编辑
C# 发送手机短信
摘要: 由于使用 收费 第三方 屏蔽 可能有 免费 第三方。 private const string Cdkey = "8S*********************";密钥id private const string Password = "151515******";密钥密码 private con
阅读全文
posted @ 2018-03-20 16:12 GOGOGO陈
阅读(823)
评论(2)
推荐(0)
编辑
2018年3月12日
通过smtp直接发送邮件
摘要: /// <summary> /// SMTP发送邮件 /// </summary> /// <param name="fromEmail">发送邮件地址</param> /// <param name="toEmail">收件箱</param> /// <param name="subject">邮
阅读全文
posted @ 2018-03-12 14:30 GOGOGO陈
阅读(593)
评论(1)
推荐(0)
编辑
C# 带参访问接口,WebClient方式
摘要: public static string GetPostString(string urladdress, string @params) { string returnValue = null; using (WebClient client = new WebClient()) { client
阅读全文
posted @ 2018-03-12 10:48 GOGOGO陈
阅读(1492)
评论(0)
推荐(1)
编辑
2018年3月9日
ASP.NET MVC 中@Html.Partial,@Html.Action,@Html.RenderPartial,@Html.RenderAction
摘要: 1.Action、RenderAction加载办法的视图,履行Controller → Model → View的次序,然后把产生的页面带回到本来的View中再回传。而Partial、RenderPartial直接加载视图文件内容 2.Html.Partial可以直接供给用户控件名作为参数,而Htm
阅读全文
posted @ 2018-03-09 14:31 GOGOGO陈
阅读(530)
评论(0)
推荐(0)
编辑
asp.net mvc Html.BeginForm()及Html.Action用法
摘要: Html.BeginForm Add:操作方法的名称,Activities:控制器的名称,FormMethod.Post:定义from的method的值,,new { id = "form1"}:指定form的id 后台 接收 submit 提交; [HttpPost] public ActionR
阅读全文
posted @ 2018-03-09 13:59 GOGOGO陈
阅读(4141)
评论(3)
推荐(0)
编辑
公告