| 
 | 
 
var form = document.createElement ("form"); form.action = "/ www / buildSale.action?"; form.target = "picSubMit"; 
form.name = "formkk _" + i; 
form.method = "post"; 
 
 
I created the form object in javascript, and assigned a value to name, but the code generated by the page is 
 
<form action = "/ www / buildSale.action?" target = "picSubMit" method = "post"> 
</ form> 
 
Why is the name attribute not generated ???? Please give pointers to that expert ... Thank you |   
 
 
 
 |