View Single Post
  #3 (permalink)  
Old Jun 24th, 2006, 16:01
jimmy jimmy is offline
New Member
Join Date: Jun 2006
Location: wednesbury
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Working with Form 'file field' data in ASP.

Quote:
Originally Posted by daryl
Could this worK?

If I used the javascript below to get the value of the form field? I could run it on page unload.

<script type="text/javascript">
var obj = document.getElementById('filefield1');
</script>


Just thinking, it probably wont work but I will look into it.
no it wont work....well it might, but why use javascript!

you can simly call the forum field -

Code: Select all
field1 = request.form("field1")
response.write field1
where field1 is the name of your input box...
Reply With Quote