Bonjour,
J'ai posté auparavant dans le forum javascript mais c'est plutot du ressort d'expert java...
Alors je donne le permalien du code de mon appli: (j'espere que j'ai le droit de faire ça sinon
désolé...)

Forum JavaScript

Le problème vient du fait que je ne reçoit rien dans mon <input>, nada!
Voici mon web.xml:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
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
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>bibliotheque</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
<servlet>
	<servlet-name>bibliotheque</servlet-name>
	<servlet-class>controller.controller</servlet-class>
</servlet>
 
<servlet-mapping>
	<servlet-name>bibliotheque</servlet-name>
	<url-pattern>/bibliotheque</url-pattern>
</servlet-mapping>
<servlet>
	<servlet-name>emprunts</servlet-name>
	<servlet-class>fonctions.emprunts</servlet-class>
</servlet>
 
<servlet-mapping>
	<servlet-name>emprunts</servlet-name>
	<url-pattern>/emprunts</url-pattern>
</servlet-mapping>
</web-app>
Si ça peut aider...
cordialement,
Hardokin