摘要:
private void button1_Click(object sender, RoutedEventArgs e) { int[] copy1 = { 1, 2, 3, 4 }; int[] copy2 = { 5, 6, 7, 8 }; ... 阅读全文
摘要:
update dbo.EquipmentAttribute set AttributeName=replace(AttributeName,' ','') where EquipmentID=83 and id =1308 阅读全文
摘要:
var ajaxTimeoutTest = $.ajax({ url:'', //请求的URL timeout : 1000, //超时时间设置,单位毫秒 type : 'get', //请求方式,get或post data :{}, //请求所传参数,json格式... 阅读全文
摘要:
现在很多的公司的网站都是用tomcat作为应用服务区的,可是对于初学者,8080端口号是如何去掉的,这些网站是如何和域名绑定到一起的呢?一个tomcat是如何绑定多域名?并且这些域名是如何对应不同的项目呢?而且我的服务器没放在机房,放在我的本地,我应该如何把我的服务器给映射到外网?这一系列的问题,今... 阅读全文
摘要:
直接贴代码吧 public class PmsService { /// /// pms接口 /// /// 接口传递数据类 /// public string InvokeService(InvokeBaseDa... 阅读全文
摘要:
SSH 为 struts+spring+hibernate 的一个集成框架,是目前较流行的一种JAVA Web应用程序开源框架。 Struts Struts是一个基于Sun J2EE平台的MVC框架,主要是采用Servlet和JSP技术来实现的。由于Struts能充分满足应用开发的需求,简单... 阅读全文
摘要:
我的第一个Nodejs程序:Hello World var http = require("http");http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/... 阅读全文
摘要:
参考地址:http://dengqsintyt.iteye.com/blog/1991930 阅读全文
摘要:
1、查看系统是否安装了MySQL 使用命令: #rpm -qa | grep mysql 2、卸载已安装的MySQL 卸载mysql命令如下: #rpm -e --nodeps mysql-libs-5.1.61-4... 阅读全文
摘要:
把下载的apache-tomcat-7.0.19.tar.gz文件上传到服务器的根目录 #tar zxvf apache-tomcat-7.0.19.tar.gz #mv apache-tomcat-7.0.19 apache-tomcat #vim /etc/profile... 阅读全文