×

XP_iis5 Server Application Error解决办法

Windows Server

XP_iis5 Server Application Error解决办法

管理员 管理员 发表于2010-09-29 浏览5550 评论1

Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.

CSS书写

IE中line-height的bug

管理员 管理员 发表于2010-09-25 浏览3061 评论0

BUG症状:当在一个容器里文字和img、input、textarea、select、object等元素相连的时候,对这个容器设置的line-height数值会失效;
解决方法:  对和文字相连接的img、input、textarea、select、object等元素加以属性:<style type="text/css">
.input{
margin: (所属line-height-自身高度)/2px 0;
vertical-align:middle;
}
</style>

生活点滴

高清机diy固件常用的linux指令集

管理员 管理员 发表于2010-09-15 浏览2846 评论0

1)启动和关闭系统
Linux 的shells
使用Bash shell
at----安排,检查,删除队列中的工作
cat----连接文件并打印到标准输出
cd----改变目录,能处理绝对和相对路径
chmod----改变文件保护权限
chown----改变文件的属主和组
clear----清除屏幕(象DOS中的cls)
cp----拷贝文件
crontab----操作每个用户的守护程序和执行的时间表
...