昨天在使用标签的时候遇到几个比较纠结的问题,没有搞懂情况如下
1。<s:action name ="type">标签问题
 程序如下的时候可以找到action
<html>
<s:action name='type'  />" 
<frame name="menuframe" target="mainframe" src="<s:action name='type'  />" >
</html>
而程序像下面的情况就不行
<html>
 <frame name="menuframe" target="mainframe" src="<s:action name='type'  />" >
</html>
报错如下
There is no Action mapped for namespace / and action name <HTML><HEAD><META http-equiv=.
这是为什么
2,struts1.x中的标签和struts2.x的标签有什么区别,比如struts1.x中的html的标签在struts2中还有吗?struts2中的哪个标签可以代替struts1.x中的<html:rewrite>?