会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Super Man
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
9
10
11
12
13
14
15
16
17
···
19
下一页
2022年12月20日
C# 数字转大写汉字
摘要: 1.数字转换成汉字大写public string NumToChinese(string x) { //数字转换为中文后的数组 string[] P_array_num = new string[] { "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"
阅读全文
posted @ 2022-12-20 11:45 WantRemake
阅读(1527)
评论(0)
推荐(0)
2022年12月16日
未在本地计算机上注册“Microsoft.ACE.OLEDB.12.0”提供程序。(C# EXCEL导入demo)
摘要: 1. 安装office包 https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=13255 2.需要在相应的IIS应用程序池启用32位应用程序 3.代码 //前台 <script language="javascript"> $(
阅读全文
posted @ 2022-12-16 15:25 WantRemake
阅读(380)
评论(0)
推荐(0)
C# AES加解密
摘要: /// <summary> /// AES加密 /// </summary> /// <param name="key"></param> /// <param name="str"></param> /// <returns></returns> public static string AesE
阅读全文
posted @ 2022-12-16 10:46 WantRemake
阅读(300)
评论(0)
推荐(0)
2022年12月12日
CSS 页面整体变灰色
摘要: body {-webkit-filter: grayscale(100%) !important;-moz-filter: grayscale(100%) !important;-ms-filter: grayscale(100%) !important;-o-filter: grayscale(1
阅读全文
posted @ 2022-12-12 16:36 WantRemake
阅读(109)
评论(0)
推荐(0)
2022年12月8日
C# 时间各种格式
摘要: 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=currentTime.Day; 1.5
阅读全文
posted @ 2022-12-08 19:53 WantRemake
阅读(622)
评论(0)
推荐(0)
2022年11月24日
C#泛型接口请求封装类
摘要: using HttpUtil; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Configuration; using System.IO; using System.Linq;
阅读全文
posted @ 2022-11-24 20:14 WantRemake
阅读(79)
评论(0)
推荐(0)
2022年11月23日
简单添加table线条
摘要: <table style="width: 100%; margin: 0 auto; border: 1px solid #BBBBBB; border-collapse: collapse" class="tj_table geiveCardTable"> <tr> <td>办理业务类型 </td
阅读全文
posted @ 2022-11-23 14:14 WantRemake
阅读(167)
评论(0)
推荐(0)
2022年10月14日
服务器故障解决(常见问题)
摘要:
阅读全文
posted @ 2022-10-14 10:19 WantRemake
阅读(36)
评论(0)
推荐(0)
2022年10月13日
C#计时器 Stopwatch 使用demo
摘要: Stopwatch st = new Stopwatch(); st.Start(); for(int i =0; i<100000; i++) { console.writeLine('输出'); } st.Stop(); TimeSpan ts = st.Elapsed; BaseHelper.
阅读全文
posted @ 2022-10-13 11:24 WantRemake
阅读(80)
评论(0)
推荐(0)
2022年10月12日
Jquery 点击弹窗,将弹窗内容赋值到各个项demo
摘要: <div class="qb"> <div class="box"> <div class="qtt f_16 fbd">会议室:区政府中一楼会议室</div> <ul class="ul1"> <li> <div class="llt">地板、地毯</div> <div class="lrt">请
阅读全文
posted @ 2022-10-12 16:38 WantRemake
阅读(38)
评论(0)
推荐(0)
上一页
1
···
9
10
11
12
13
14
15
16
17
···
19
下一页
公告