salut
j'ai un problème de forward dans struts1.2.7 en effet j'ai travaillé avec struts1.1 sans aucun problème mais lorsque j'ai installer struts 1.2 et struts-layout1.2 j'ai eu un problème
Code:
2
3
4
5
voici un bout de code de mon action
struts-config:Code:
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
un bout de code de jsp de retourCode:
2
3
4
5
6
7
8
9
10<action path="/login" type="Login.LoginAction" scope="session" validate="true" input="/JSP/Login.jsp" name="LoginForm"> <forward name="success" path="/JSP/Home.jsp"/> <forward name="failure" path="/JSP/Login.jsp"/>
Code:
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
