in the form page I write:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Upload your Topic/Item</title>
<link rel="stylesheet" type="text/css" href="myStyle.css"/>
</head>
<body>
<form action="receiver.jsp" enctype="MULTIPART/FORM-DATA" method="post">
<p>
<table>
<tr>
<td>Topic Name
*)</td>
<td> <input type="text" name="Topic" /></td>
</tr>
<tr>
<td>Item Name: (*)</td>
<td><input type="text" name="Item" /></td>
</tr>
<tr><td>Description:</td>
<td>
<textarea name="description" cols="40" rows="5" wrap="virtual">
</textarea>
</td></tr>
when I get the parameter of this textarea called "description", I got null value, I saw a post before saying that the multimedia part encryption type is not compatible with form elements sending to the server page. And If I want to unload a picture I have to use things from Jakarta...? I got the javabeans working perfectly and I don't want anything else
waiting for your reply , Thanks .