Re: Header and Footer file include struts 2

2015-01-12 Thread Tenchi Masaki
This was already pointed out at stackoverflow, but you're pointing out your action result to a jsp fragment: /WEB-INF/views/header/header.jspf It doesn't make much sense. You should point it to a jsp that has the fragment included in it. For example: /WEB-INF/views/success-result.jsp where succ

Re: Header and Footer file include struts 2

2015-01-09 Thread Kiran Badi
I have jspf fragments rather than jsp file. I did try with jsp also but same issue. How does one include header and footers across all pages in struts 2 without using tiles? On Jan 10, 2015 12:31 AM, "Yaragalla Muralidhar" wrote: > you have written > > /WEB-INF/views/header/header.jspf > > > i

Re: Header and Footer file include struts 2

2015-01-09 Thread Yaragalla Muralidhar
you have written /WEB-INF/views/header/header.jspf i think it is not header.jspf it is header.jsp *Thanks and Regards,* Muralidhar Yaragalla. *http://yaragalla.blogspot.in/ * On Sat, Jan 10, 2015 at 10:42 AM, Kiran Badi wrote: > I already have that in page b

Re: Header and Footer file include struts 2

2015-01-09 Thread Kiran Badi
I already have that in page but still getting error On Friday, January 9, 2015, Yaragalla Muralidhar wrote: > if you are using struts tags add this to your jsp > > <%@ taglib prefix="s" uri="/struts-tags" %> > > > > *Thanks and Regards,* > Muralidhar Yaragalla. > > *http://yaragalla.blogspot.in/

Re: Header and Footer file include struts 2

2015-01-09 Thread Yaragalla Muralidhar
if you are using struts tags add this to your jsp <%@ taglib prefix="s" uri="/struts-tags" %> *Thanks and Regards,* Muralidhar Yaragalla. *http://yaragalla.blogspot.in/ * On Sat, Jan 10, 2015 at 9:49 AM, Kiran Badi wrote: > Hi > > I need some help and I have t

Header and Footer file include struts 2

2015-01-09 Thread Kiran Badi
Hi I need some help and I have to include header and footer file in Index jsp... For some reason its not working and showing up source code in browser. http://stackoverflow.com/questions/27220192/struts-2-sinclude-tag-not-working-for-header-jspf-file?noredirect=1#comment42946997_27220192 Ap