忘了说,我还清过IE缓存,Cookie

解决方案 »

  1.   

    struts太弱智,还是我太弱智?
      

  2.   

    tomcat控制台总显示:
    2005-01-14 10:19:39,062 [org.apache.struts.util.PropertyMessageResources]-[INFO]
     Initializing, config='org.apache.struts.taglib.html.LocalStrings', returnNull=t
    rue
    2005-01-14 10:20:07,781 [org.apache.struts.util.PropertyMessageResources]-[INFO]
     Initializing, config='org.apache.struts.taglib.bean.LocalStrings', returnNull=t
    rue
    2005-01-14 10:20:07,796 [org.apache.struts.util.PropertyMessageResources]-[INFO]
     Initializing, config='org.apache.struts.taglib.logic.LocalStrings', returnNull=
    =========================================================================================
    以上的信息算不算报错????????????????????????
      

  3.   

    帮定一计~~~~~~~~~~~~
    偶也遇到过~~   不过重新写了就好了 原来的 也是这样的信息晕/~~~~~~~~~~~~~`
    Initializing, config='org.apache.struts.taglib.html.LocalStrings', returnNull=t
    rue
    2005-01-14 10:20:07,781 [org.apache.struts.util.PropertyMessageResources]-[INFO]
     Initializing, config='org.apache.struts.taglib.bean.LocalStrings', returnNull=t
    rue
    2005-01-14 10:20:07,796 [org.apache.struts.util.PropertyMessageResources]-[INFO]
     Initializing, config='org.apache.struts.taglib.logic.LocalStrings', returnNull=true
      

  4.   

    不过重新写了就好了???重写什么?页面?formBean?ActionBean?配置文件?
      

  5.   

    truePhone 不是null,
    Action中有form.setTruePhone("");
    而且formBean中有      if(truePhone==null){
            truePhone="";
          }
      

  6.   

    把你的页面重写一次,不一定是你说的那个标签出错!因为你的代码里只有一个<html:html>标签!看看你的页面代码,一定有别的错误,导致页面里<html:html>标签不能用!所以才出现'org.apache.struts.taglib.html.LocalStrings'错误
      

  7.   

    谢谢楼上,不过肯定是这个标签错了,我的页面很复杂,不想重写,里面有好多标签,隐含层什么的,如果去掉这个标签,就正常了,而且,把这个标签改个名字,改成其他标签的名字,也没有问题,
    去掉这个标签所在的table,也没有问题
      

  8.   

    忘了说一生,其实这个页面是早写好的,只不过因为要加子段。所以右加了几个html标签,就变成这样了
      

  9.   

    我把这个标签写成了<input name="truePhone" type="text">
    结果,页面显示没有问题,但是程序运行有问题,数据库中没有插入相应值
      

  10.   

    那给<html:text property="truePhone"></html:text>加个name属性吧
      

  11.   

    好,我式式,好像formBean中都没有获得到truePhone的值
      

  12.   

    tomcat控制台又显示以下信息:
    究竟是怎么回事???
    2005-01-14 10:50:24,656 [com.opensymphony.oscache.base.Config]-[INFO] Properties
     {cache.capacity=1000}
      

  13.   

    我把.jar包解开了,反编译了formbean,看到代码正常阿,private String truePhone;  public String getTruePhone() {
        return truePhone;
      }
      public void setTruePhone(String truePhone) {
        this.truePhone = truePhone;
      }
    都在呢,
    而且我在action中输出]
    System.out.println(form.getTruePhone()+"*************************");
    结果都得不到值。
    这到底是怎么回事呢?
      

  14.   

    System.out.println(form.getTruePhone()+"*************************");
    结果都得不到值。就说明truePhone是null,再检查检查