用html代码写吧,何必生搬硬套呢。<a href=""></a>

解决方案 »

  1.   

    blackdreamzg(基本靠手):难道是这样:<a href="/t_005MAction.do?id=<bean:write name='t_005' property='id'">修改</a>
    如果参数是这样是正确的
    但是:<a href="/t_005MAction.do 好像不正确,出现问题 nwsl(阿甘) :
    validation.xml能不能具体点?
      

  2.   

    就是说在validation.xml里加入某一个页面某个表单中的某个字段的检查。
      

  3.   

    <a href="/t_005MAction.do?id=<bean:write name='t_005' property='id'/>">修改</a>
      

  4.   

    不建议使用这种嵌套,在以前版本struts是不支持的,
    <html:link action="/addUserGroupPage?userId=${userId}">
    我们在项目中都是这样用的
      

  5.   

    <html:link action="/t_005MAction?id=${<bean:write name="t_005" property="id/>}">删除</html:link>
    是这样吗?
      

  6.   

    <html:link action="/addUserGroupPage?userId=${userId}">这里的${}是jstl,还要配置环境才能用
    配置就和struts基本一样,或者用<%=%>这样来使用就行了。
      

  7.   

    需要在xml配置文件中进行配置