- 浏览: 9392 次
- 性别:
- 来自: 苏州
最近访客 更多访客>>
文章列表
进来做程序,想利用log4net记录日志,一点心得
平台:VS2005
1.bin引入log4net.dll包
2.在web.config配置,如下
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net"/>
</configSections>
<log4net>
<appender name="Test" ...
form.submit提交出错
- 博客分类:
- 常见错误
提交表单,JAVASCRIOT报错,form.submit提示语法无效
因为表单数据过多 加上method="post"就能解决
1.只能输入数字的方法,当然小数点也是不能输的
<script type="text/javascript">
function checkForm(){
if(isNaN(form1.qty.value)){
alert('<%=lmap.get("Qty")%>必须为数字!');
return false;
}
}
</script>
2.禁止文本框输入内容
<input type="tex ...
<input type="button" name="sub" value=" 拆箱 " class="w3dButton" onclick='sub()'>
如果name和javascript方法同名 就会报此属性方法或错误
解决办法更改其中一个即可 ,原因不明
在eclipse中,启动run on server时报错:
Resource is out of sync with the file system: '/Test_1_Struts_Spring_Hibernate/WebContent/WEB-INF/.struts-config.xml.strutside'.
查阅资料后发现这是文件系统不同步的问题,是因为在eclipse之外对工程中的resource进行修改引起的;但是,有时没有在eclipse之外进行修改,也会报类似的错误。
解决办法:需要手动刷新一下资源管理器。
(1)在eclipse中,工程目录右键,选择F5(refresh)
( ...
- 2009-11-27 09:06
- 浏览 3738
- 评论(1)
http://hi.baidu.com/lixiaocui1000/blog/item/14cc397ebe06883f0dd7da0a.html
- 2009-11-25 21:28
- 浏览 889
- 评论(0)