这是我今天学习的时候遇到的另一个问题,做图像超链接要把链接地址放到的href属性中去,可是这就是在标签中套标签,是不可以的,查了《Web编程实做教程》,才知道正确的解决方案,现在与大家分享。
此段代码运行需要两张图片:a.gif和b.gif。
my.xml 以下内容为程序代码:
网络指南
a.gif
http://www.a.com
局域网技术
b.gif
http://...
WebDAV(Web-based Distributed Authoring and Versioning)
linux下安装MySQL的大全

例:安装mysql 4.1.21
# groupadd mysql
# useradd -g mysql mysql
# tar -zxvf mysql-4.1.21.tar.gz
# cd mysql-4.1.21
# ./configure --prefix=/usr/local/mysql --with-charset=gbk
# make
# make install
# cp support-files/my-medium.cnf /etc/my.cnf
设置自启动
# cp support-files/mysql.server /etc/rc.d/init.d/mysqld
# chmod 700 /etc/rc.d/init.d/mysqld
# chkconfig --add mysqld(关于chkcon...
solaris 8 sparc,bind9.4.1pl1升级到9.4.2的问题

solaris 8 sparc,bind9.4.1pl1升级到9.4.2,
“ pkgadd -d bind-9.4.2-sol8-sparc-local
The following packages are available:
1 SMCbind bind
(sparc) 9.4.2
Select package(s) you wish to process (or 'all' to process
all packages). (default: all) [?,??,q]:
Processing package instance from
bind
(sparc) 9.4.2
Current administration requires that a unique insta...
“/”应用程序中的服务器错误的解决方法
南德意志报:中国培养经理从幼儿园抓起实在离谱
建立邮件系统
范跑跑 runner fan
防止SQL注入

一个防止SQL注入函数(1)
0 or Instr(LCase(Str),"insert ") > 0 or Instr(LCase(Str),"delete ") > 0 or Instr(LCase(Str),"delete from ") > 0 or Instr(LCase(Str),"count(") > 0 or Instr(LCase(Str),"drop table") > 0 or Instr(LCase(Str),"update ") > 0 or Instr(LCase(Str),"truncate ") > 0 or Instr(LCase(Str),"asc(") > 0 or Instr(LCase(Str),"mid(") > 0 or Instr(LCase(Str),"char(") > 0 ...