hello faisal, im working on adding a progress bar on your file upload but unfortunately i cant move on with the form validation. Is there some way that i could retrieve the values of the form from insert.htm on submit?
here the changes i made on the form
<input type="button" value="Submit" onClick"performProcess();">
<SCRIPT LANGUAGE="JavaScript">
var OpenWindow;
var windowprops = "toolbar=0,location=0,directories=0,status=0, " + "menubar=0,scrollbars=0,resizable=0,width=800,height=600";
function performProcess()
{
OpenWindow = window.open("insert.asp", "nameOfPage", windowprops);
document.forms[0].submit();
}
</SCRIPT>
When a new windows is pop out (or target.self), it retrieves the value of the form from insert.htm
Any help is greatly appreciated. Thank you
olocin