tags:

views:

26

answers:

2

"s:form" is specific to struts2 framework or can we use it in struts1 framework also ???

+1  A: 

Tags in the "s" namespace (<s:XXX>) are specific to Struts2. You can't use the s: tags in Struts 1.

Antoine
A: 

s:form is indeed specific to struts 2.0. The s namespace was first introduced in 2.0.

RegDwight