摘要:
NET7下显示验证码 nuget:Zkweb.system.drawing mac 下显示验证码还得 nuget:runtime.osx.10.10-x64.CoreCompat.System.Drawing public class VierificationCodeServices { /// 阅读全文
摘要:
ztree分类页面代码 后台代码: [Area("Adnn1n")] public class CategoryController : BaseController { private readonly DAL.Interface.ICategory dal; public CategoryCon 阅读全文
摘要:
kendo的下拉框树示例 后台代码: public static string GetTreeJson_kendo(List<Category> list) { List<TreeNode_kendo> list_return = new List<TreeNode_kendo>(); var to 阅读全文
摘要:
NET7中简单的登录判断基类 public class BaseController : Controller { public override void OnActionExecuting(ActionExecutingContext context) { base.OnActionExecut 阅读全文
摘要:
NET7下取客户IP WEB层建立以下类: //控制器中直接用即可取IP ViewBag.ip = HttpContext.GetClientIP(); public static class HttpContextExtension { public static string GetClient 阅读全文
摘要:
windows用户态程序高效排错 256页 2007年12月第一次印刷 20MB 阅读全文
摘要:
博文视点-代码大全(第2版) 966页 152MB 阅读全文
摘要:
《Electron实战-入门、进阶与性能优化》 272页 50MB 2020年5月第1版 阅读全文
摘要:
《跨平台桌面应用开发-基于Electron与NW.js》 361页 419MB 2018年3月第1版 阅读全文
摘要:
NET7中sqlsugar的使用 仿《深入浅出ASP.NET CORE》这书里的IRepository和RepositoryBase using SqlSugar; using System.Linq.Expressions; namespace WebApplication1.DAL { /// 阅读全文