'Access is Denied' - javascript error

Dear All,

I have a file upload control. I call its click method via a hotspot link. If I click the link and select a file and then submit the form …there is ‘Access is denied’ error. but if I dont use the hotspot link and just the browse button…things work fine…What could be the problem…and do we have a solution for this?

thanks,

purvin.

Subject: ‘Access is Denied’ - javascript error

You cannot write to (or otherwise manipulate) a file-type control on the web. That’s a basic browser security feature, and there’s nothing you can do about it. (Malicious code could scour the user’s hard drive for interesting-looking files if the operation was permitted.)

Subject: RE: ‘Access is Denied’ - javascript error

Thanks Stan…