摘要: 我用一个简单的用户名验证的例子来谈一谈我对Ajax的了解:这个例子用到了两个JSP和一个JS,我没有用后台来验证,因为原理是一样的.1.用户注册表单页:ajaxCheckUser.jsp<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "htt 阅读全文
posted @ 2011-05-26 17:43 ctou45 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 第一步:在Ubuntu下安装Postgresql[代码内容]root@ubuntuserver:~#sudo apt-get install postgresql-8.4 postgresql-client-8.4 postgresql-contrib-8.4[代码说明]安装服务端和命令行客户端psql。[功能说明]/usr/lib/postgresql/8.4/ 存放postgresql相关的二进制文件/usr/lib/postgresql/8.4/bin/ 可执行文件/usr/lib/postgresql/8.4/lib/ 共享库文件/etc/postgres/8.4/main/ 存放po 阅读全文
posted @ 2011-05-26 09:55 ctou45 阅读(1435) 评论(0) 推荐(0) 编辑
摘要: ubuntu常用软件包deb的安装与卸载主要用到apt-get dpkg两个命令:安装软件 apt-get install softname1 softname2 softname3……卸载软件 apt-get remove softname1 softname2 softname3……卸载并清除配置 apt-get remove --purge softname1更新软件信息数据库 apt-get update进行系统升级 apt-get upgrade搜索软件包 apt-cache search softname1 softname2 softname3……修正(依赖关系)安装:apt-g 阅读全文
posted @ 2011-05-26 09:54 ctou45 阅读(600) 评论(0) 推荐(0) 编辑