06 2020 档案
摘要:本文仅供参考:首先你要掌握的基础知识:row 行概念 <el-row></el-row>col 列概念 <el-col></el-col>col组件的:span属性的布局调整,一共分为24栏: 代码示例: <el-row> <el-col :span="24"><div class="grid-co
阅读全文
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ElementUIupload.aspx.cs" Inherits="WebApplication1.test.ElementUIupload" %> <!DOCTYPE html P
阅读全文
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="vueform.aspx.cs" Inherits="WebApplication1.test.vueform" %> <!DOCTYPE html PUBLIC "-//W3C//D
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;using System.Configura
阅读全文
摘要:--查询卡号不存在订单表中卡号数据 SELECT *FROM c_cardinfo aWHERE NOT EXISTS (SELECT id FROM c_cardtypeorder WHERE c_cardtypeorder.CO_CID = a.id) LIMIT 100000 SELECT *
阅读全文
摘要:String和StringBuilder的区别String类型对象的特点: 1.它是引用类型,在堆上分配内存2.运算时会产生一个新的实例3.String 对象一旦生成不可改变(Immutable)4.定义相等运算符(== 和 !=)是为了比较 String 对象的值(而不是引用) String,St
阅读全文
摘要:要用 session + redis 共享session的原因: 先进的企业级或者大型的网站平台,都是分布式结构,分布式的好处是通过nginx分发请求,让多个服务器各自处理请求,来减少单一服务器的压力,并且提高执行效率。 在这个分布式结构下,如果不用共享session的话,就会出现问题。当一个客户端
阅读全文
摘要:什么是线程池?为什么要用线程池?怎么用线程池? 1. 什么是线程池? .NET Framework的ThreadPool类提供一个线程池,该线程池可用于执行任务、发送工作项、处理异步 I/O、代表其他线程等待以及处理计时器。那么什么是线程池?线程池其实就是一个存放线程对象的“池子(pool)”,他提
阅读全文
摘要:$(function(){$.ajax({操作的bai代du码zhi});})或者是$(document).ready(function(){$.ajax({操作的代码});})
阅读全文
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD X
阅读全文
摘要:一、抽象类: 在类声明中使用abstract修饰符的类称为抽象类。含有一个或一个以上的抽象成员的类,必须定义为抽象类。当方法声明包含abstract修饰符时,称该方法为抽象方法,虽然抽象方法同时隐含为虚拟方法,但是它不能有virtual修饰符。声明中包含abstract修饰的属性称为抽象属性。抽象方
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using Microsoft.AspNetCore.Mvc; namespace LayUICore.Areas
阅读全文
摘要:app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "Areas", pattern: "{area:exists}/{controller=Index}/{action=Index}/{id?}", default
阅读全文
摘要:startup.cs文件 app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "Areas", pattern: "{area:exists}/{controller=Index}/{action=Index}/{i
阅读全文
摘要:create table sys_menu ( id int identity, sys_pid int null, sys_menuname varchar(50) null, sys_menuurl varchar(100) null, sys_state int null, createtim
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Text;using LayUIMvcTest.Models;name
阅读全文
摘要:<div class="left-nav"> <div id="side-nav"> <ul id="nav"> </ul> </div></div><script src="~/Scripts/jquery-1.8.2.js"></script><script type="text/javascr
阅读全文
摘要:@{ ViewBag.Title = "Index";}@{ Layout = null;} <!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>后台管理</title> <meta name="renderer"
阅读全文