摘要:
ASP.net Core 中添加插件需要 1.将文件放在wwwroot文件夹下(根目录文件夹,没有的话需要创建) 2.需要在project.json中的dependencies添加如下依赖 "Microsoft.AspNetCore.StaticFiles": "1.0.0", 3.需要在proje 阅读全文
摘要:
$($(grid2.jqGrid("getGridRowById", i + 1))[0].children).each(function (childI, childO) { if (childI == 4) { // childO.disabled = true; $(childO).addCl 阅读全文
摘要:
using ICSharpCode.SharpZipLib.Zip; Response.Clear(); Response.ClearContent(); Response.ClearHeaders(); //创建压缩输出流 ZipOutputStream zos = null; //创建内存流 MemoryStream ms = null; Response.Cont... 阅读全文
摘要:
ItextSharp生成pdf文档并下载 阅读全文
摘要:
C# ITextShrap Pdf 生成打印 阅读全文
摘要:
下载DLL 放在C:\Windows\SysWOW64(64位系统)或C:\Windows\System32(32位系统) 下载地址 https://yunpan.cn/cBB4Q6czDKyqt 访问密码 d243 阅读全文
摘要:
1.定义样式不能就加;隔开当有定义的css样式并没有起作用的时候看看定义该样式前边有没有加“;”的如 p{};div{} 阅读全文
摘要:
Math方法详解Math.sqrt(x) 计算X开平方Math.sqrt(x,y) 计算xyMath.round(x) 计算x 四舍五入的值getBoundingClientRect()这个方法返回一个矩形对象,包含四个属性:left、top、right和bottom。分别表示元素各边与页面上... 阅读全文
摘要:
1.字符串转换为数字用 -0var a=1;var b='2';var c= a+b;(12)var c=a+(b-0);(3) 阅读全文