11 2016 档案
JS产生随机数
摘要:<script> function GetRandomNum(Min,Max){ var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRando
阅读全文
log4net的使用
摘要:第一步:NuGet安装Log4net,配置Web.config: <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> </confi
阅读全文