05 2017 档案
摘要:以http为例, 假如ip地址从局域网的地址172.31.212.20改为127.0.0.1 但是网站没法访问了http://172.31.212.20/chile.backoffice/ 必须通过127.0.0.1才可以访问 这个链接才能访问http://127.0.0.1/chile.backo
阅读全文
摘要:https://campus.barracuda.com/product/websecurityservice/article/WSS/ConfigProxyWithPACFile/ https://findproxyforurl.com/pac-functions/ 可以参考开源项目的pac设置
阅读全文
摘要:http://blog.sina.com.cn/s/blog_6f7d179e0101a60l.html 某个网段不使用代理的设置FF和IE不同,IE是用*通配符,FF是用CIDR的表示法, FF的简单设置方法如下(以192网段为例,你可以改为你的所屏蔽的IP数字): 如果屏蔽192.0.0.0 -
阅读全文
摘要:新入职的公司,电脑上的visual studio已经安装了visualsvn 尝试在tools-->extensions and updates中卸载 但是uninstall按钮是被禁用掉的 谷歌找了一下解决方案 https://superuser.com/questions/171315/unin
阅读全文
摘要:http://www.w3school.com.cn/css/css_howto.asp http://www.runoob.com/css/css-howto.html 当读到一个样式表时,浏览器会根据它来格式化 HTML 文档。 外部样式表 当样式需要应用于很多页面时,外部样式表将是理想的选择。
阅读全文
摘要:http://www.runoob.com/css/css-id-class.html http://www.w3school.com.cn/css/css_syntax_id_selector.asp http://www.w3school.com.cn/css/css_syntax_class_
阅读全文
摘要:http://www.cnblogs.com/huangtailang/p/4209180.html http://www.cnblogs.com/yangyunzhou/archive/2012/12/28/2837933.html 权限的配置参考这个 http://blog.sina.com.c
阅读全文
摘要:https://www.howtogeek.com/124313/how-to-see-who-logged-into-a-computer-and-when/ 1.首先配置windows记录用户的登录行为 打开gpedit.msc 2.在event viewer中查看
阅读全文
摘要:http://www.cnblogs.com/artech/archive/2012/02/15/wcf-rest.html 需要注意的是,发布的服务,可以在web behavior中指定显示help页面。 http://localhost/ApplicationName/ServiceName.s
阅读全文
摘要:Operation 'CreateProductCodeStock' of contract 'IChileService' specifies multiple request body parameters to be serialized without any wrapper element
阅读全文
摘要:使用SoapUI 1.新建一个rest项目 2.双击上图中的Request1 查询的时候,Method选择post resource的地方要调整到对应的方法 查询的内容是用json格式发送 查询的的结果使用json查看 Endpoint需要补充二级域名 层级结构说明 第1个是project 第2个是
阅读全文
摘要:https://technet.microsoft.com/en-us/library/cc940085.aspx Nslookup is a useful tool for troubleshooting DNS problems, such as host name resolution. Wh
阅读全文
摘要:https://www.microsoft.com/net/core#windowscmd https://download.microsoft.com/download/B/9/F/B9F1AF57-C14A-4670-9973-CDF47209B5BF/dotnet-dev-win-x64.1.
阅读全文
摘要:http://www.w3school.com.cn/css/css_selector_type.asp 元素选择器 最常见的 CSS 选择器是元素选择器。换句话说,文档的元素就是最基本的选择器。 如果设置 HTML 的样式,选择器通常将是某个 HTML 元素,比如 p、h1、em、a,甚至可以是
阅读全文
摘要:http://stackoverflow.com/questions/48198/how-can-you-find-out-which-process-is-listening-on-a-port-on-windows 1.通过资源监视器进行查看 2.通过TCP View进行查看 3.通过命令行查看
阅读全文
摘要:https://support.microsoft.com/en-hk/help/973094/error-0x80070020-when-you-try-to-start-a-web-site-in-iis-7.0 This issue may occur if TCP port 80 and/o
阅读全文
摘要:https://answers.microsoft.com/en-us/windows/forum/windows_10-desktop/windows-10-explorerexe-error-windows-cannot-find/51d0a9cb-0937-412c-9d43-8bb5a9e4
阅读全文
摘要:http://gitblit.com/federation.html A Gitblit federation is a mechanism to clone repositories and keep them in sync from one Gitblit instance to anothe
阅读全文
摘要:http://mozilla.com.cn/thread-374897-1-1.html 要激活此功能步骤如下: 在地址栏键入"about:config" 点击“我了解此风险” 在下方任意位置右键,选择新建布尔值 输入首选项名称为“security.enterprise_roots.enabled”
阅读全文
摘要:Linux https://www.shellhacks.com/linux-check-change-file-encoding/ 显示 在某一个目录下,直接执行file * $ file *chucklu.autoend.js: HTML document, UTF-8 Unicode text
阅读全文
摘要:http://stackoverflow.com/questions/13869817/difference-in-physical-path-root-path-virutal-path-relative-virtual-path-app 第一个答案 In regards to an ASP.NE
阅读全文
摘要:The concept of configuration paths is fundamental to managing and operating an IIS server, so I wanted to spend some time explaining it in hope that t
阅读全文
摘要:In a recent meeting, some folks on my team needed some guidance on load testing the Web application that one of my feature teams are developing. The q
阅读全文
摘要:1.首先通过cmd进入 C:\Windows\System32\inetsrv>netshnetsh>http netsh http> 退出的时候,使用exit命令 2.显示监听的ip show IpListen IP addresses present in the IP listen list:
阅读全文
摘要:^从行开始处匹配,$从行结束处开始匹配。\A从字符串开始处匹配,\Z从字符串结束处匹配。 1.匹配十六进制的字符串 http://stackoverflow.com/questions/223832/check-a-string-to-see-if-all-characters-are-hexade
阅读全文
摘要:https://technet.microsoft.com/en-us/library/cc748993(v=ws.11).aspx#BKMK_winui If Task Scheduler is not open, start Task Scheduler. For more informatio
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/system.security.cryptography.hmacsha256(v=vs.110).aspx Computes a Hash-based Message Authentication Code (HMA
阅读全文
摘要:Time to build your first HTML page by hand I could go on with more theory and send half of you to sleep (trust me); instead you are now going to actua
阅读全文
摘要:Tag Diagram You may have noticed that HTML tags come in pairs; HTML has both an opening tag (<tag name>) and a closing tag (</tag name>). The only dif
阅读全文
摘要:In this ‘hands-on’ module we will be building our first web page in no time. We just need to quickly cover a couple of points beforehand to help get o
阅读全文
摘要:A cheaper option Some people may not want to buy a domain or pay for hosting because they only have a personal web site for fun or practice. You can s
阅读全文
摘要:Getting your web site ‘live’ on the Web With the nerd background details under our belts, we can now learn about the two steps to going live on the We
阅读全文
摘要:www.how-to-build-websites.com/basic-concepts/part1.php An introduction to domain names, web servers, and website hosting I assume that you know nothin
阅读全文
摘要:https://www.sevenforums.com/windows-updates-activation/119088-update-not-applicable-your-computer.html Belarc Advisor - Free Personal PC Audit Secunia
阅读全文
摘要:Windows本身的控制面板中自带的搜索,无法根据补丁编号进行搜索 可以将补丁信息导出到文本,再用文本编辑器进行查找 https://www.concurrency.com/blog/w/search-for-installed-updates wmic qfe list > updatelist.
阅读全文
摘要:Introduction The IIS 7 and above Web server feature set is componentized into more than thirty independent modules. A module is either a Win32 DLL (na
阅读全文
摘要:https://docs.microsoft.com/en-us/iis/get-started/introduction-to-iis/introduction-to-iis-architecture Introduction Internet Information Services (IIS)
阅读全文
摘要:https://www.iis.net/configreference/system.applicationhost/sites/site/application/virtualdirectory Overview The <virtualDirectory> element is a child
阅读全文
摘要:https://docs.microsoft.com/en-us/sql/relational-databases/databases/system-databases SQL Server includes the following system databases. 1.master Reco
阅读全文
摘要:Display 在第一个选项display,选中某一个屏幕的时候 如果被选中的屏幕已经是main display,那么下方会显示this is your currently main display 如果被选中的屏幕不是主屏幕,那么下方会显示一个checkbox,Make this my maind
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/k6h9cz8h.aspx The ASP.NET IIS Registration tool (Aspnet_regiis.exe) is used to register ASP.NET applications
阅读全文
摘要:证书 数字证书及CA的扫盲介绍 accounts.google.com 使用了无效的安全证书 如何:使用 MMC 管理单元查看证书 生命周期 ASP.Net请求处理机制初步探索之旅 - Part 4 WebForm页面生命周期 Asp.NetMVC和WebForm的请求生命周期 WebForm页面生
阅读全文