Validating attachment on web

Hi All,

I’m working on a web based project.

Need to validate for attachment on a web form.

Created 3 file upload controls to allow user to attach 3 diff attachments (atleast one in each)

Before submitting the form I need to check whether there is atleast one attachment in each of those attachment fieldss…

can anyone help me for a soln any alternate soln to accomplish this??

pls help

Subject: Use Javascript

Give each upload control an ID

then check the value of that control before when the use hits save, if it’s empty, they haven’t passed an attachment.

This article will also help you

http://www.codestore.net/store.nsf/unid/DOMM-4Q8LSJ

Subject: Use Javascript

Thanks Carl…achieved using JS…