I can see in some forums they are initializing struts tag as
<%@taglib prefix="html" uri="http://struts.apache.org/tags-html" %>
and they are initializing tags as <html:form> etc..
but i am using struts tag as
<%@taglib prefix="s" uri="/struts-tags" %>
and using as <s:form> tag. my qustion is, Is there any difference in between struts <html:form> tag and <s:form> tag, or they have only change in prefix only.
I do not have much idea about Struts1, but if i am correct the one you mention
<html:form>are from classic Struts1 and<s:form>is from S2.Basically you can use any prefix to define in S2 tags like
a, b,c etc.If you want you are free to use html as you prefix all you need to tell S2 about this likein short its only the declaration and using
sas prefix is kind of convention.