Web常用工具 二维码美化 在线压缩 JavaScript AI工具汇总网站 ASP.NET控件源码查询 W3CHTML W3SCHOOL TypeScript 开源中国 51aspx github codeproject SQLBACKUP 几种排序算法比较 SQL中deny权限 MSDN下载 HttpWebRequest类 HTML5 stackoverflow ASP.NET 页生命周期概述 IIS 5.0 和 6.0 的 ASP.NET 应用程序生命周期概述 [SQL Server]视图sys.sysprocesses brnshop学习 SQL视频 Fiddler帮助文档 Sprint.Net SQLServer牛人博客 codeplex IIS官网 IE11 Developer Jquery源码视频上 Jquery源码视频下 Jquery Bugs jquery.miaov.com 正则表达式 Jquery API 1.9 Service Broker Javascript Object中的方法讲解 Microsoft webcast 微信开发接口 ECMAScript5 Underscore Jquery Bugs SQL存储过程事务嵌套 官网SQL事务锁 2345天气插件 Json数据查看 C++ jquery-plugin-validate 博学谷(传智播客) Swift视频 IOS代码论坛 SWIFT设计模式 操作系统下载 AngularJS VueJS ASPNETCORE 前端题库 Node.js ASPNETCORE 腾讯课堂 SwiftUI SwiftUI疑问解答 ADO.NET SMO 数字化企业网 Unicode码查询 Redis使用文档 .NET 微服务:适用于容器化 .NET 应用程序的体系结构 .NETCore5.0微软官方文档 CSS3.0 在 ASP.NET Core 中配置 Windows 身份验证 Maven使用教程 Maven Repository Thymeleaf Thymeleaf中文CSDN Spring官方文档 Spring中文文档 SpringBoot SpringData SVG在线设计工具 SVG教程01 SVG教程02 fontawesome图标库 mybatis官网 mybatis-spring中文 mysql教程 python教程 python的scrapy教程01 python的scrapy教程02 VS开发python xpath教程 腾讯向量数据库教程 JSZip浏览器内存中创建文件与文件夹 axios的使用文档 SheetJS(JS操作excel)的使用文档

huaan011

 
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页

2014年10月29日

[故障引起的故事]URL中带加号的处理

摘要: 问题起因: 客户订购了一关键字为"e+h变送器" , 在首页推荐广告中,会根据用户在search搜索过的关键字进行一个匹配投放。技术实现是UED通过JS获取cookie中的h_keys内容,拼装到 http://xxxxx/advert/ctp_advert.htm?num=4&keyword={... 阅读全文

posted @ 2014-10-29 09:53 华安 阅读(505) 评论(0) 推荐(0) 编辑

2014年10月28日

Openning SharePoint - 80 website gives HTTP 404 Error, The webpage cannot be found ! on SharePoint 2013

摘要: ask:I tried to open the SharePoint - 80 throw Browse in IIS, but I get HTTP 404 Error (The webpage cannot be found). And at the browser when typehttp:... 阅读全文

posted @ 2014-10-28 22:31 华安 阅读(1265) 评论(0) 推荐(0) 编辑

Solving SharePoint Server 2010 - 503. The service is unavailable, After installation

摘要: Installed: SharePoint Server 2010 for Internet Enterprise Beta (x64) On: Windows Server 2008 Standard (x64) on 64 bit hardwareAttempts to access the C... 阅读全文

posted @ 2014-10-28 22:27 华安 阅读(305) 评论(0) 推荐(0) 编辑

2014年9月28日

StringBuild的一个小问题

摘要: 今天在项目开发的过程中写了一小段代码:sb_result.AppendFormat("{\"SmsmTaskModeName\":\"{0}\",\"SmsmEmpName\":\"{1}\"", dt.Rows[0]["smsmTaskModeName"].ToString(), dt.Rows[... 阅读全文

posted @ 2014-09-28 10:46 华安 阅读(243) 评论(0) 推荐(0) 编辑

2014年9月16日

PHP与apache配置

摘要: 在apache 的安装路径中找到 \conf\httpd.conf文件在 LoadModule最后面添加如下代码:PHPIniDir "D:\PHP"LoadModule php5_module D:\PHP\php5apache2_2.dllAddHandler application/x-htt... 阅读全文

posted @ 2014-09-16 22:41 华安 阅读(292) 评论(0) 推荐(0) 编辑

2014年9月4日

WinForm多线程编程与Control.Invoke的应用浅谈

摘要: 在WinForm开发中,我们通常不希望当窗体上点了某个按钮执行某个业务的时候,窗体就被卡死了,直到该业务执行完毕后才缓过来。一个最直接的方法便是使用多线程。多线程编程的方式在WinForm开发中必不可少。 本文介绍在WinForm开发中如何使用多线程,以及在线程中如何通过Control.Inv... 阅读全文

posted @ 2014-09-04 08:28 华安 阅读(236) 评论(0) 推荐(0) 编辑

2014年9月2日

sql查询job

摘要: use msdbgo--if object_id('tempdb..#SqlAgentJob') is not null-- drop table #SqlAgentJob--godeclare @SqlAgentJob table([job_id] uniqueidentifier,[origin... 阅读全文

posted @ 2014-09-02 09:45 华安 阅读(467) 评论(0) 推荐(0) 编辑

2014年8月30日

linux下安装apache

摘要: 1.apache 下载:http://archive.apache.org/dist/httpd/ apache_1.3.33.tar.gz 2. 进入linux 2.1: tar -zxvf apache_1.3.33.tar.gz 解压 2.2:./configure --prefi... 阅读全文

posted @ 2014-08-30 09:49 华安 阅读(237) 评论(0) 推荐(0) 编辑

2014年8月26日

SQL Server:查看数据库用户权限(SQL 2005)

摘要: 1. 查看 SQL 2005 用户所属数据库角色use yourdbgoselect DbRole = g.name, MemberName = u.name, MemberSID = u.sid from sys.database_principals u, sys.database_princ... 阅读全文

posted @ 2014-08-26 15:15 华安 阅读(507) 评论(0) 推荐(0) 编辑

2014年8月25日

VNC连接黑屏的问题

摘要: 今天尝试在CentOS上安装一个VNC Server。CentOS5 已经自带了VNC,默认也已经安装了,只要配置一下就可以了(如果没有安装,可以:yum install vnc vncserver安装)。Windows客户端只需安装一个vncviewer即可,例如realvnc。安装配置好以后,却... 阅读全文

posted @ 2014-08-25 23:12 华安 阅读(1193) 评论(0) 推荐(0) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页

导航