<  form  name="e-mail"  action="sendMail.jsp"  method="post">  
该表单的名称为"e-mail",当提交该表单时,表单的内容以post的方式提交到
sendMail.jsp页面。
<  meta  http-equiv="Content-Type" content="text/html;charset=gb2312">  
这个指的是传递的媒体类型,采用gb2312编码形式

解决方案 »

  1.   

    去WWW.w3.org看看HTTP协议的白皮书吧!
      

  2.   

    随便找本网页制作的书,都会详细介绍这两个语句
    一个是Form提交的标准确格式
    一个大部份页面采用的编码格式。
      

  3.   

    1.your name of this form just is "e_mail",if you will submit this form ,"sendMail.jsp" will be compiled and execused, the variable of this will be sent to this "jsp",whith the method of "Post";
    2.the style of the sending medium ,useing the mode of coding --"gb2312" which make your "jsp"display Chinese correctly!
      

  4.   

    第一行是针对提交数据进行处理的方式
    第二行是指定HTML页面的性质,可以不写