摘要:
打开“控制面板”。选择“系统和安全”。点击“Windows Defender防火墙”。在左侧选择“高级设置”以打开“Windows防火墙与高级安全”管理工具。在左侧选择“入站规则”。在右侧,滚动找到和选择名为“文件和打印机共享 (Echo Request - ICMPv4-In)”的规则。 右键点击 阅读全文
摘要:
配置 HTTP API 错误日志记录 HTTP \Parameters 键下的三个注册表值控制 HTTP API 错误日志记录。 这些密钥位于注册表项中: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters。 备注 阅读全文
摘要:
<embed src="https://www.mahailushu.com/pdfjs/web/mine.pdf" type="application/pdf" width="1000" height="800"/> 阅读全文
摘要:
$("a").live("click", function() { // handle click event });新版JQUERY使用下面代替 $(document).on("click", "a", function() { // handle click event }); 阅读全文
摘要:
在head标签加上 <style type="text/css">html {filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);-webkit-filter: grayscale(100%);}</style> 阅读全文
摘要:
1.函数解释len()是用来计算字符串长度left()是用来截取指定部分的字符串2.sql语句:select id,pid from tborder by case when pid=0 then left('00000',5-len(id))+convert(varchar,id) when pi 阅读全文
摘要:
--分页存储过程if (object_id('pro_page', 'P') is not null) drop proc pro_stugocreate procedure pro_stu( @pageIndex int, @pageSize int)as declare @startRow in 阅读全文
摘要:
--insert 触发器create trigger tri_inserton student --将要进行更改的表名for insert --给表插入一条数据的时候触发asdeclare @student_id char(10) --定义一个变量select @student_id=s.stude 阅读全文
摘要:
通过一个函数把查出来的多条数据拼接成一段字符串如:表USER 姓名 班级Id UserName ClassId 1 小红 3 2 小强 3 3 小刚 3create function f_str(@ID int)returns varchar(8000)ASbegin declare @ret va 阅读全文
摘要:
环境是手机浏览网页 禁止手指滑动屏幕左右上下回弹:body{overflow:hidden;} 禁止左右回弹:body{overflow-x:hidden;} 禁止上下回弹:body{overflow-y:hidden;} 阅读全文