摘要: ztree分类页面代码 后台代码: [Area("Adnn1n")] public class CategoryController : BaseController { private readonly DAL.Interface.ICategory dal; public CategoryCon 阅读全文
posted @ 2023-07-26 20:12 牛腩 阅读(16) 评论(0) 推荐(0)
摘要: kendo的下拉框树示例 后台代码: public static string GetTreeJson_kendo(List<Category> list) { List<TreeNode_kendo> list_return = new List<TreeNode_kendo>(); var to 阅读全文
posted @ 2023-07-26 19:02 牛腩 阅读(81) 评论(0) 推荐(0)
摘要: NET7中简单的登录判断基类 public class BaseController : Controller { public override void OnActionExecuting(ActionExecutingContext context) { base.OnActionExecut 阅读全文
posted @ 2023-07-26 10:27 牛腩 阅读(29) 评论(0) 推荐(0)
摘要: NET7下取客户IP WEB层建立以下类: //控制器中直接用即可取IP ViewBag.ip = HttpContext.GetClientIP(); public static class HttpContextExtension { public static string GetClient 阅读全文
posted @ 2023-07-26 03:12 牛腩 阅读(66) 评论(0) 推荐(0)