10 2022 档案

摘要:SQL Assistant Red Gate系列 功能: 智能提示、拼写检查、语法检查(纠错)、代码格式化、版本控制、生成脚本、脚本导入导出、结构比对、数据比对、搜索对象、批量生成测试数据、生成数据库文档 SQL ines SQL Converter数据库脚本转换工具 ExpressProfiler 阅读全文
posted @ 2022-10-31 17:54 yinghualeihenmei 阅读(27) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_44504261/article/details/125623642 LEN() 函数用于输入字符串的字符数。 LEN() 函数返回输入字符串的字符数,不包括尾随空格。 以下是LEN() 函数的语法: LEN(input_string)1在此 阅读全文
posted @ 2022-10-31 17:51 yinghualeihenmei 阅读(202) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/hwb33333/article/details/85164092 今天遇到这个问题,提了半天提不上去,之前也没人更新东西,不知道啥原因,试了一下终于好了 方法:1.将更改的文件粘贴出去 2.父文件夹右键-team-还原 3.再update一下,最后将文件 阅读全文
posted @ 2022-10-31 14:01 yinghualeihenmei 阅读(416) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/yasuo2/p/6433697.html 一.FOR XML PATH 简单介绍 那么还是首先来介绍一下FOR XML PATH ,假设现在有一张兴趣爱好表(hobby)用来存放兴趣爱好,表结构如下: 接下来我们来看应用FOR XML PATH的查询 阅读全文
posted @ 2022-10-31 11:48 yinghualeihenmei 阅读(45) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/gzb1/p/16401441.html https://www.cnblogs.com/niyl/p/10579132.html STUFF():在 SQL Server 中,stuff() 函数用于从源字符串中删除给定长度的字符序列,并从指定的起始 阅读全文
posted @ 2022-10-31 11:48 yinghualeihenmei 阅读(1746) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/carekee/articles/2094731.html C#中Trim()、TrimStart()、TrimEnd()的用法: 这三个方法用于删除字符串头尾出现的某些字符。Trim()删除字符串头部及尾部出现的空格,删除的过程为从外到内,直到碰到一 阅读全文
posted @ 2022-10-31 11:38 yinghualeihenmei 阅读(85) 评论(0) 推荐(0) 编辑
摘要:计算机读代码的顺序是从上往下读的,html文件中的顺序是<head>→<body>→body后方。如果是jsp ( JSP全称Java Server Pages,是一种动态网页开发技术。它使用JSP标签在HTML网页中插入Java代码。标签通常以<%开头以%>结束。 JSP是一种Java servl 阅读全文
posted @ 2022-10-29 14:39 yinghualeihenmei 阅读(37) 评论(0) 推荐(0) 编辑
摘要:https://www.lmlphp.com/user/65927/article/item/1777474/ <iframe id="indexFrame" name="index" width="800" onload='iFrameHeight("indexFrame");' framebor 阅读全文
posted @ 2022-10-29 14:34 yinghualeihenmei 阅读(164) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_45820444/article/details/109013996 https://www.cnblogs.com/asmurmur/p/14773022.html 前端不可不学的浏览器渲染机制,阿里年年问,去一个栽一个。听说百度也在考这个 阅读全文
posted @ 2022-10-29 12:52 yinghualeihenmei 阅读(833) 评论(0) 推荐(0) 编辑
摘要:https://www.doc88.com/p-9035790031495.html document. body. offsetHeight在火狐浏览器下所得的值为0,此时可以使用 var CurrentBodyHeight=document. body. offsetHeight > 0 ?do 阅读全文
posted @ 2022-10-28 18:05 yinghualeihenmei 阅读(24) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/w3school/htmldom/prop_iframe_contentDocument.htm contentDocument 属性能够以 HTML 对象来返回 iframe 中的文档。 下面的例子可从载入 iframe 的文档的第一个 <h2> 元素中提 阅读全文
posted @ 2022-10-28 18:02 yinghualeihenmei 阅读(55) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/305425072.html block表示该元素显示为一个块级元素,单独占一行 1、当表格为多列的情况下,属性为"display:block"行的内容宽度仅与第一列宽度相同,也就是说无论你使colspan的属性值为多少,剩余列的空 阅读全文
posted @ 2022-10-28 18:01 yinghualeihenmei 阅读(224) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/186790434.html 这是JavaScript语言,是opera5开始有的一个脚本object,一个boolean的值,用来检察浏览器是否是opera opera浏览器:Opera(欧朋)是由 Opera 软件为个人计算机推 阅读全文
posted @ 2022-10-28 17:54 yinghualeihenmei 阅读(226) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_37763820/article/details/79694963 1.执行时间 window.onload必须等到页面内包括图片的所有元素加载完毕后才能执行。 $(document).ready()是DOM结构绘制完毕后就执行,不必等到加载完毕。 阅读全文
posted @ 2022-10-28 17:23 yinghualeihenmei 阅读(23) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/cvper/article/details/79150566 问题:在使用 jquery 3.3.1 版本时,写了如下测试代码: <script> $(window).load(function(){ console.log("just a test!") 阅读全文
posted @ 2022-10-28 17:23 yinghualeihenmei 阅读(118) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Doulvme/article/details/100865855 load() 方法通过 AJAX 请求从服务器加载数据,并把返回的数据放置到指定的元素中。 语法: load(url,data,function(response,status,xhr)) 阅读全文
posted @ 2022-10-28 16:58 yinghualeihenmei 阅读(54) 评论(0) 推荐(0) 编辑
摘要:以前一直以为引用的少了肯定不显示,引用的多了没什么问题,现在发现多了也会有问题,顺序也会有影响 (查了下,方法冲突会导致问题) 阅读全文
posted @ 2022-10-28 16:02 yinghualeihenmei 阅读(8) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/jclian91/article/details/78197736 这个问题可以用SQL的通配符来解决,我们以下面的sample_table表为例: 现在我们选出表中model全部为数字或全部为字母的记录,SQL代码如下: SELECT no, model 阅读全文
posted @ 2022-10-28 09:38 yinghualeihenmei 阅读(1307) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/572383135.html 首先从字面上理解,Menu就是菜单,MenuStrip是菜单栏,MenuItem是菜单项,ToolStripMenuItem是工具栏菜单项Menu是Form类的一个属性,winform里面貌似没有这么一 阅读全文
posted @ 2022-10-27 17:23 yinghualeihenmei 阅读(861) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_42528820/article/details/111400257 AcceptButton场景有一个界面需要输入很多很信息,通过设置TabIndex可以让用户输完一个文本框的信息使用tab键就可以跳到下一个输入信息的文本框,当用户将所有信 阅读全文
posted @ 2022-10-27 17:17 yinghualeihenmei 阅读(150) 评论(0) 推荐(0) 编辑
摘要:https://vimsky.com/examples/detail/csharp-class-system.version.html 本文整理汇总了C#中System.Version类的典型用法代码示例。 Version类属于System命名空间,在下文中一共展示了Version类的9个代码示例, 阅读全文
posted @ 2022-10-27 17:00 yinghualeihenmei 阅读(259) 评论(0) 推荐(0) 编辑
摘要:https://www.jb51.net/article/247960.htm 提供表示 Windows 注册表中的根项的 RegistryKey 对象,并提供访问项/值对的 static 方法。 继承层次结构 System.Object Microsoft.Win32.Registry 命名空间: 阅读全文
posted @ 2022-10-27 16:48 yinghualeihenmei 阅读(139) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Calvin_zhou/article/details/107831241 一 概述在C#语言中进程类是指Process类,该类所在的命名空间是System.Diagnostics Process类主要提供对本地和远程进程的访问,并提供对本地进程的启动、停 阅读全文
posted @ 2022-10-27 16:12 yinghualeihenmei 阅读(1995) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_41319343/article/details/86632254 1、publicstaticvoidEnableVisualStyles():此方法为应用程序启用可视样式。 是激活应用程序的显示风格,而显示风格是构成操作系统主题的各种元素,如色彩 阅读全文
posted @ 2022-10-27 15:52 yinghualeihenmei 阅读(286) 评论(0) 推荐(0) 编辑
摘要:http://liyongseo.com/blog/post/3907.html 先来说 Web 服务器,它一般指的是网站服务器,可以向浏览器(PC端或者移动端)等 Web 客户端提供服务,供请求数据或者下载数据。服务器使用 HTTP (超文本传输协议)和客户端浏览器进行通信,因此我们也把 Web 阅读全文
posted @ 2022-10-27 15:15 yinghualeihenmei 阅读(108) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_43027000/article/details/120451054 ” - %22# - %23% - %25& - %26( - %28) - %29+ - %2B, - %2C/ - %2F: - %3A; - %3B< - %3C= 阅读全文
posted @ 2022-10-26 17:59 yinghualeihenmei 阅读(109) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zhaocg00/article/details/124539625 因为Format方法接收的参数是Object类型,所以对于值类型会涉及到装箱的操作 下面通过一些例子来详细介绍string.Format的用法: 如果你想要往另外一个字符串中插入某个ob 阅读全文
posted @ 2022-10-26 17:14 yinghualeihenmei 阅读(358) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/142795342.html C语言中“=>”的意思: lambda表达式,表示一个匿名函数,=>前面的是参数,后面的是函数体。你可以把它当作一个函数。 举例说明:Func<int, int, int> Add = (x, y) = 阅读全文
posted @ 2022-10-26 16:33 yinghualeihenmei 阅读(1357) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/shanhanyu/article/details/80515892 1. SQL注入 安全等级★★★★★ 实际上这个漏洞很严重,一旦被注入成功,后果不堪设想,但这类问题处理起来还是蛮简单的,下面以JAVA为例举例说明 推荐方案,使用预编译的prepare 阅读全文
posted @ 2022-10-26 16:32 yinghualeihenmei 阅读(566) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/cplvfx/article/details/55517436 有不少解决办法,我用下面的。 在web.config中添加: <system.web> <customErrors mode="Off"/> </system.web> 这样可以看到具体的错误 阅读全文
posted @ 2022-10-26 12:01 yinghualeihenmei 阅读(522) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/hhw199112/article/details/80437011 https://zhidao.baidu.com/question/544465492.html 右侧四个选项,程序集,COM,项目,浏览。 项目和浏览很好理解。程序集和COM的区别在哪 阅读全文
posted @ 2022-10-25 16:30 yinghualeihenmei 阅读(498) 评论(0) 推荐(0) 编辑
摘要:https://www.likecs.com/show-305879574.html#sc=200 nuget 是.Net平台上的包管理器, 对于包的发布(打包 package)和消费(下载依赖管理)都有很好的支持。 为什么要使用Nuget 在我们的项目, 存在着一些公共Dll, 这些Dll被大量的 阅读全文
posted @ 2022-10-25 16:25 yinghualeihenmei 阅读(214) 评论(0) 推荐(0) 编辑
摘要:https://segmentfault.com/a/1190000039202628 https://learn.microsoft.com/zh-cn/dotnet/csharp/linq/ https://blog.csdn.net/qq_42672770/article/details/12 阅读全文
posted @ 2022-10-25 11:28 yinghualeihenmei 阅读(30) 评论(0) 推荐(0) 编辑
摘要:运行代码,按F12-选中控制台, 点按钮,观察控制台,会报错。 阅读全文
posted @ 2022-10-25 10:52 yinghualeihenmei 阅读(20) 评论(0) 推荐(0) 编辑
摘要:like '%" + txtID.Text.Trim().ToString() + "%' 写成 like %'" + txtID.Text.Trim().ToString() + " '% %在''里面 阅读全文
posted @ 2022-10-25 10:49 yinghualeihenmei 阅读(166) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/wangbaicheng1477865665/archive/2018/01/10/8213917.html DataRow转为DataTable dt = drs.CopyToDataTable<DataRow>(); 1.概念 DataSet是AD 阅读全文
posted @ 2022-10-25 09:52 yinghualeihenmei 阅读(300) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/200851857.html 1.LINQ 概述 LINQ(Language-Integrated Query,语言集成查询)是微软在.NET Framework 3.5版本引入的新功能,它能够将查询功能直接引入.Net Frame 阅读全文
posted @ 2022-10-24 17:52 yinghualeihenmei 阅读(39) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_26640897/article/details/81161883 有时候我们需要对数据表进行筛选,微软为我们封装了一个公共方法, DataTable.Select(),其用法如下: Select() Select(string filterExpr 阅读全文
posted @ 2022-10-24 15:50 yinghualeihenmei 阅读(2965) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_38188762/article/details/125725620 骆驼式命名法就是当变量名或函数名是由一个或多个单词连结在一起,而构成的唯一识别字时,第一个单词以小写字母开始;从第二个单词开始以后的每个单词的首字母都采用大写字母,例如:myFir 阅读全文
posted @ 2022-10-22 16:05 yinghualeihenmei 阅读(1843) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_45515347/article/details/125471512 https://blog.csdn.net/weixin_44234912/article/details/108978864 1.inner join 和outer join的区 阅读全文
posted @ 2022-10-22 15:49 yinghualeihenmei 阅读(262) 评论(0) 推荐(0) 编辑
摘要:https://baike.baidu.com/item/JSON/2462549?fr=aladdin JSON(JavaScript Object Notation, JS对象简谱)是一种轻量级的数据交换格式。它基于 ECMAScript(European Computer Manufactur 阅读全文
posted @ 2022-10-22 15:31 yinghualeihenmei 阅读(1) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qingkaqingka/article/details/88812351 c#开发的程序,需要引用到System.Web.Script.Serialization。习惯在解决方案右键添加引用,发现添加应用窗口没有“System.Web.Script.Se 阅读全文
posted @ 2022-10-22 14:42 yinghualeihenmei 阅读(529) 评论(0) 推荐(0) 编辑
摘要:http://g.pconline.com.cn/x/895/8956417.html .ttf文件是字体文件,当电脑里有时自带的字体文件不能满足我们编辑的需要,这时就要我们下载一些字体文件,随着windows的流行,已经变成最常用的一种字体文件表示方式。 ttf(TrueTypeFont)是一种字 阅读全文
posted @ 2022-10-21 09:56 yinghualeihenmei 阅读(1703) 评论(0) 推荐(0) 编辑
摘要:https://jingyan.baidu.com/article/295430f1ba775c0c7e005028.html 打开画图软件,进入它的主界面中; 选择椭圆,定义好颜色; 按住shift键不放,画出一个圆形; 按ctrl+c,复制这个圆,然后按ctrl+v,粘贴得到另外一个圆形; 将第 阅读全文
posted @ 2022-10-20 18:21 yinghualeihenmei 阅读(681) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/wujy/p/3264475.html 一:HttpContext理论知识: 1:HttpContext类它对Request、Respose、Server等等都进行了封装,并保证在整个请求周期内都可以随时随地的调用;为继承 IHttpModule 和 阅读全文
posted @ 2022-10-20 18:10 yinghualeihenmei 阅读(23) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_33171058/article/details/119016475 https://blog.csdn.net/weixin_39922361/article/details/118848026 存储器原理- -结构 存储器的基本单位为存储 阅读全文
posted @ 2022-10-20 14:57 yinghualeihenmei 阅读(250) 评论(0) 推荐(0) 编辑
摘要:(1)将小写转换为大写:UPPER(cust_id) (2)将大写转换为小写:LOWER(cust_id) 阅读全文
posted @ 2022-10-20 09:46 yinghualeihenmei 阅读(112) 评论(0) 推荐(0) 编辑
摘要:模数转换一般要经过采样、保持和量化、编码等步骤。 https://zhuanlan.zhihu.com/p/462841831 这个是我能看懂一点的。。。 阅读全文
posted @ 2022-10-19 16:57 yinghualeihenmei 阅读(34) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/591003025.html 手机拍照的原理是感光器件工作原理。 与传统相机相比,传统相机使用“胶卷”作为其记录信息的载体,而数码相机的“胶卷”就是其成像感光器件,而且是与相机一体的,是数码相机的心脏。感光器是数码相机的核心,也是最 阅读全文
posted @ 2022-10-19 15:47 yinghualeihenmei 阅读(759) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_39093373/article/details/118608357 问题描述: SVN通过url链接仓库报错: ‘Unable to connect to a repository at URL’ 解决方案: 右击打开svn的Settings 将S 阅读全文
posted @ 2022-10-18 16:21 yinghualeihenmei 阅读(689) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/i_Sga/article/details/51064068 在更新时碰到报错 apr does not understand this error code 清理了下就ok了 右击项目-subversion-clearup 阅读全文
posted @ 2022-10-18 16:04 yinghualeihenmei 阅读(127) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/anmei1912/article/details/101614285 https://blog.csdn.net/zouyujie1127/article/details/7683602/ 右击选择svn,选择clear up, 则解决 解决svn的wo 阅读全文
posted @ 2022-10-18 15:53 yinghualeihenmei 阅读(29) 评论(0) 推荐(0) 编辑
摘要:https://jingyan.baidu.com/article/59a015e3042dabf7948865c9.html 1、input框文本域长度可以使用对应的css样式进行调试,不能有大写字母。 第一种为width属性,设置input框的宽度,可以按照百分比和px长度设置。 2、 第二种为 阅读全文
posted @ 2022-10-18 10:59 yinghualeihenmei 阅读(5924) 评论(0) 推荐(0) 编辑
摘要:1、https://www.runoob.com/ 菜鸟教程 2、https://www.w3school.com.cn/ w3school 3、https://leetcode.cn/ 力扣(刷题) 4、老白前端:https://www.yzktw.com.cn/css 5、https://www 阅读全文
posted @ 2022-10-17 18:00 yinghualeihenmei 阅读(114) 评论(0) 推荐(0) 编辑
摘要:来源:https://blog.csdn.net/weixin_45750972/article/details/122503767 HTML link 标签和script标签 1.link标签 <head><link rel="stylesheet" type="text/css" href="t 阅读全文
posted @ 2022-10-17 15:45 yinghualeihenmei 阅读(145) 评论(0) 推荐(0) 编辑
摘要:来源:https://blog.csdn.net/shengyin714959/article/details/125009120 HTML概述 1.1 什么是HTMLHTML是做网站的、Web开发、互联网生态开发(PC端+移动端+微应用) 目前我们使用的都是HTML5,支持传统的PC端开发,还支持 阅读全文
posted @ 2022-10-17 15:34 yinghualeihenmei 阅读(315) 评论(0) 推荐(0) 编辑
摘要:https://www.yisu.com/zixun/629770.html https://www.cnblogs.com/webSnow/p/15356723.html meta是html语言head区的一个辅助性标签。meta标签的作用有:搜索引擎优化(SEO),定义页面使用语言,自动刷新并指 阅读全文
posted @ 2022-10-17 15:07 yinghualeihenmei 阅读(57) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/jquery/html-html.html 改变所有 <p> 元素的内容: $("button").click(function(){ $("p").html("Hello <b>world</b>!"); }); 定义和用法 html() 方法设置或返 阅读全文
posted @ 2022-10-17 14:16 yinghualeihenmei 阅读(13) 评论(0) 推荐(0) 编辑
摘要:https://www.jquery123.com/nextAll/ 获得每个匹配元素集合中所有下面的同辈元素,选择性筛选的选择器。 如果一个jQuery对象代表了一组DOM元素,.nextAll()方法允许我们在DOM树上遍历所有元素的后继元素,并且构建一个新的匹配元素的jQuery对象。 该方法 阅读全文
posted @ 2022-10-17 13:51 yinghualeihenmei 阅读(55) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_42648692/article/details/86294123 attr()方法是jQuery操作属性的一个方法。可以根据参数的不同,来获取或设置属性值。.attr()方法常用的四个表达形式:1 $(selector).attr(传入属性 阅读全文
posted @ 2022-10-17 13:32 yinghualeihenmei 阅读(228) 评论(0) 推荐(0) 编辑
摘要:https://www.w3school.com.cn/jquery/effect_slidetoggle.asp slideToggle() 方法通过使用滑动效果(高度变化)来切换元素的可见状态。 如果被选元素是可见的,则隐藏这些元素,如果被选元素是隐藏的,则显示这些元素。 $(".searchb 阅读全文
posted @ 2022-10-17 11:55 yinghualeihenmei 阅读(39) 评论(0) 推荐(0) 编辑
摘要:https://product.pconline.com.cn/itbk/software/dnyw/1703/8977166.html js是javascript文件的扩展名,例如xx.js,javascript是一种程序语言,主要用于网页的特效、功能的脚本编程,是一种很强大的脚本语言,在网站的前 阅读全文
posted @ 2022-10-17 11:40 yinghualeihenmei 阅读(2334) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/jquery/event-live.html live() 方法在 jQuery 版本 1.7 中被废弃,在版本 1.9 中被移除。请使用 on() 方法代替。 live() 方法为被选元素添加一个或多个事件处理程序,并规定当这些事件发生时运行的函数。 阅读全文
posted @ 2022-10-17 11:34 yinghualeihenmei 阅读(18) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/jquery/event-focus.html https://www.w3school.com.cn/jquery/event_blur.asp 添加函数到 focus 事件。当 <input> 字段获得焦点时发生 focus 事件: $("input 阅读全文
posted @ 2022-10-17 11:27 yinghualeihenmei 阅读(55) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/cssref/css-selectors.html https://m.php.cn/faq/463701.html jQuery选择器和CSS选择器的写法十分类似,都具有隐式迭代的特点,无需循环遍历符合选择器要求的每个元素,使用起来相对方便,通常,把c 阅读全文
posted @ 2022-10-17 11:06 yinghualeihenmei 阅读(193) 评论(0) 推荐(0) 编辑
摘要:来源:https://blog.csdn.net/weixin_43831728/article/details/107788822 为什么要引出构造函数这一概念 看下面的代码,对于Date类,可以通过InitDate公有的方法给对象设置内容,但是如果每次创建对象都调用该方法设置信息,未免有点麻烦, 阅读全文
posted @ 2022-10-17 10:51 yinghualeihenmei 阅读(127) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/fightingintherain/article/details/125664885 1、漏洞描述 2、修复方案(IIS服务端) 1)下载安装url 重写工具 ( 官网URL Rewrite : https://www.iis.net/downloads 阅读全文
posted @ 2022-10-14 01:40 yinghualeihenmei 阅读(806) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/VisageNocturne/article/details/112094795 http://t.zoukankan.com/SmilePastaLi-p-6824387.html https://www.w3xue.com/exp/article/20 阅读全文
posted @ 2022-10-14 01:33 yinghualeihenmei 阅读(685) 评论(0) 推荐(0) 编辑
摘要:https://jingyan.baidu.com/article/5553fa8299ff9324a23934dc.html 直接修改后缀为.jpg有时候会遇到些不显示的问题。 第一步:选中一张png格式的图片,单击鼠标右键,在“打开方式”中,选择“画图”。 第二步:在画图界面中,单击左上角红色箭 阅读全文
posted @ 2022-10-13 16:07 yinghualeihenmei 阅读(454) 评论(0) 推荐(0) 编辑
摘要:https://blog.51cto.com/u_15162069/2776830 首先我们打开SqlServer管理工具(SSMS),在左侧目录中找到 管理-->右键维护计划-->新建维护计划 双击左侧下方目录:创建 ”清除维护“ 任务 双击后打开提示窗口,我们设置 “清除维护” 任务内容:即:在 阅读全文
posted @ 2022-10-12 15:24 yinghualeihenmei 阅读(84) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/1383192132920330300.html 1、右击我的电脑-属性页面一般都有。 2、遇到了属性页面没有信息的,使用Windows内置命令systeminfo查看系统信息。 开始菜单中输入cmd 回车打开命令提示符,输入sys 阅读全文
posted @ 2022-10-12 13:05 yinghualeihenmei 阅读(2097) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/wwwwestcn/article/details/122681555 https://wenku.baidu.com/view/cd3e96872b4ac850ad02de80d4d8d15abf23004e.html 按照常见的修改组策略后并没有成功, 阅读全文
posted @ 2022-10-12 11:13 yinghualeihenmei 阅读(1035) 评论(0) 推荐(0) 编辑
摘要:来源:https://blog.csdn.net/YingUser/article/details/124564266 autocomplete:表示自动填充,在input中autocomplete属性是默认开启的 1、定义:autocomplete属性规范表单是否启用自动完成功能。自动完成允许浏览 阅读全文
posted @ 2022-10-11 16:17 yinghualeihenmei 阅读(475) 评论(0) 推荐(0) 编辑
摘要:来源:http://hk.voidcc.com/question/p-yldwkbxt-ta.html enableviewstatemac属性用于指定在收到每个客户端请求时执行检查以确保客户端未篡改他们所服务的控制/隐藏数据。 这很重要,因为.Net使用无状态机制,并依赖于发生在客户端上的变化作为 阅读全文
posted @ 2022-10-11 13:35 yinghualeihenmei 阅读(19) 评论(0) 推荐(0) 编辑
摘要:来源:https://blog.csdn.net/fightingintherain/article/details/125664885 1、漏洞描述 2、修复方案(IIS服务端) 1)下载安装url 重写工具 ( 官网URL Rewrite : The Official Microsoft IIS 阅读全文
posted @ 2022-10-11 11:06 yinghualeihenmei 阅读(1130) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/milijiangjun/article/details/100112245 解决的方法 打开窗口-》重置窗口布局 中文版的截图 英文版本的截图 阅读全文
posted @ 2022-10-10 17:54 yinghualeihenmei 阅读(20) 评论(0) 推荐(0) 编辑
摘要:详细描述: Spambot 搜寻因特网站点,开始查找电子邮件地址来构建发送自发电子邮件(垃圾邮件)的邮件列表。 如果检测到含有一或多个电子邮件地址的响应,可供利用以发送垃圾邮件。 而且,找到的电子邮件地址也可能是专用电子邮件地址,对于一般大众应是不可访问的。 解决办法: 从 Web 站点中除去任何电 阅读全文
posted @ 2022-10-10 17:23 yinghualeihenmei 阅读(585) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/CHS007chs/article/details/52525326 在web应用form表单中,如果input标签没有指定“autocomplete”属性为“off”,则“autocomplete”的属性会自动默认为“on”。当web应用form表单中的 阅读全文
posted @ 2022-10-10 17:17 yinghualeihenmei 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-10-10 17:12 yinghualeihenmei 阅读(253) 评论(0) 推荐(0) 编辑
摘要:https://jingyan.baidu.com/article/4e5b3e19f7613d91901e2488.html 打开iis服务器中的网站,选择对应网站,然后双击“目录浏览”,进入目录浏览功能。 进入目录浏览功能我们可以看见左边的目录列表里面的信息是灰色的,不可点击修改。那是因为右边的 阅读全文
posted @ 2022-10-10 17:08 yinghualeihenmei 阅读(1214) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_34216196/article/details/91847502 Microsoft ASP.NET 很容易受到信息泄露攻击。攻击者可以发送一个通知是否支持调试支持的恶意请求。 攻击者可以利用 DEBUG 动词来发送恶意请求。 解决: 设置 阅读全文
posted @ 2022-10-10 16:51 yinghualeihenmei 阅读(103) 评论(0) 推荐(0) 编辑
摘要:代码走查(code walkthrough)是一个开发人员与架构师集中讨论代码的过程。代码走查的目的是交换有关代码是如何书写的思路,并建立一个对代码的标准集体阐述。 在代码走查的过程中,开发人员都应该有机会向其他人来阐述他们的代码。 通常地,即便是简单的代码阐述也会帮助开发人员识别出错误并预想出对以 阅读全文
posted @ 2022-10-10 00:38 yinghualeihenmei 阅读(36) 评论(0) 推荐(0) 编辑
摘要:https://baike.baidu.com/item/%E7%BB%84%E4%BB%B6/6902128?fr=aladdin https://blog.csdn.net/HSH541/article/details/120530961 C++ Builder中叫组件,Delphi中叫部件,而 阅读全文
posted @ 2022-10-10 00:36 yinghualeihenmei 阅读(351) 评论(0) 推荐(0) 编辑
摘要:首先在外观上,没有任何区别。 png格式的图片所占存储大小明显大于jpg图片,相比之下jpg格式用于很多场合。 png格式图片可进行无损压缩,可以在PS中重新编辑;jpg格式图片会牺牲图片质量,不能再次编辑。 在使用中PNG支持透明效果,可以作为背景透明的图片使用,jpg不能作为透明图片使用。 阅读全文
posted @ 2022-10-09 09:49 yinghualeihenmei 阅读(1400) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/159932236.html 一种软件授权文件 lic文件即license文件,用于程序限制用的。这是很多商业软件使用的一个授权文件,就是说软件是通过正常的安装程序得到,是不能修改的。 由软件开发商开发出lic文件,分发给相应权限的 阅读全文
posted @ 2022-10-09 09:34 yinghualeihenmei 阅读(1024) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_40963664/article/details/123900763 一般的项目模块中都有DAO、Entity、Service、Controller层。 Entity层:实体层 数据库在项目中的类 DAO层: 持久层 主要与数据库进行交互 Servi 阅读全文
posted @ 2022-10-09 01:14 yinghualeihenmei 阅读(65) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_51308214/article/details/125165747 Spring框架是Java平台上的一种开源应用框架, Spring解决了开发者在J2EE开发中遇到的许多常见的问题,提供了功能强大IOC、AOP及Web MVC等功能。Spring 阅读全文
posted @ 2022-10-09 01:12 yinghualeihenmei 阅读(145) 评论(0) 推荐(0) 编辑
摘要:elementUI的学习链接:https://blog.csdn.net/qq_40132294/article/details/124829639 vue的学习链接:https://blog.csdn.net/weixin_48841931/article/details/126219434 ht 阅读全文
posted @ 2022-10-09 00:54 yinghualeihenmei 阅读(829) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_38188762/article/details/125725620 三、数据库字段命名规范 3.1字段命名规范 (1)采用26个英文字母(区分大小写)和0-9的自然数(经常不需要)加上下划线'_'组成,命名简洁明确,多个单词用下划线'_'分隔 (2 阅读全文
posted @ 2022-10-08 17:46 yinghualeihenmei 阅读(558) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/legoe/article/details/7007152 https://www.cnblogs.com/otakuhan/p/7802881.html 在页面没有错误时,window.onerror事件是不存在的; 如果错误被try..catch语句捕 阅读全文
posted @ 2022-10-07 20:58 yinghualeihenmei 阅读(853) 评论(0) 推荐(0) 编辑