Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Valide File Upload Field

Status
Not open for further replies.

rmz8

Programmer
Aug 24, 2000
210
US
How can I create code that will validate a file upload field? The validation will just check to make sure that text has been entered in the file upload field.

Ryan ;-]
 
<form .. onsubmit=&quot;return Checkit()&quot;>

..

function Checkit(){
if (document.forms.formname.filefieldname.value!=&quot;&quot;) return true
else{
alert('enter a file name, please')
return false}
} Victor
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top