摘要:
1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=currentTime.Day; 1.5 阅读全文
摘要:
using HttpUtil; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Configuration; using System.IO; using System.Linq; 阅读全文
摘要:
<table style="width: 100%; margin: 0 auto; border: 1px solid #BBBBBB; border-collapse: collapse" class="tj_table geiveCardTable"> <tr> <td>办理业务类型 </td 阅读全文
摘要:
Stopwatch st = new Stopwatch(); st.Start(); for(int i =0; i<100000; i++) { console.writeLine('输出'); } st.Stop(); TimeSpan ts = st.Elapsed; BaseHelper. 阅读全文
摘要:
<div class="qb"> <div class="box"> <div class="qtt f_16 fbd">会议室:区政府中一楼会议室</div> <ul class="ul1"> <li> <div class="llt">地板、地毯</div> <div class="lrt">请 阅读全文
摘要:
手机号码:var reg1 = /^1[3|4|5|6|7|8|9][0-9]\d{8}$/; //前端验证 function validData() { var txtPhone = $("#txtPhone").val(); var reg1 = /^1[3|4|5|6|7|8|9][0-9]\ 阅读全文
摘要:
1.右键项目属性进去修改 2.,用txt打开sln解决方案,框框中的就是你当前的端口号 阅读全文
摘要:
//除法 function dataDivisition(a, b) { if (b != "0") { return (a / b * 100).toFixed(2) + "%"; } return "0%"; }//查找集合某个对象是否存在,不存在就新增 function arrDeal(arr 阅读全文
摘要:
接触了 net core的小伙伴们 已经发现 @html.Action()方法 官方已经不提供支持了,转而使用 ViewComponents替代了,同时也增加了TagHelper。 1.如果想用以前的@Html.Action()方法,那只能手动实现了,记得服务注册!!! 详情转: https://w 阅读全文