Я пытаюсь загрузить файл на мой сервер.Файл загружается, но я хотел бы получить значение, которое находится в текстовом поле File1.Я НЕ хочу путь, я просто хочу сохранить имя файла.
<html>
<head>
<title>File Upload</title>
</head>
<body>
<form name="uploadr" method="post" action="" enctype="multipart/form-data">
File 1 : <input name="File1" type="file"/><br/><br/>
<input name="btnSubmit" type="submit" value="Upload files >>" /><br/>
<input name="hiddenVal" type="hidden" value="testVal" />
</form>
</body>
</html>
У меня есть следующий VBScript:
<%
Server.ScriptTimeout = 2000
Form.SizeLimit = &H100000
If Form.State = 0 Then 'Completed
Form.Files.Save DestinationPath
response.write "<br><Font Color=green>File (" & Form.TotalBytes \1024 & "kB) was saved to " & DestinationPath & " folder.</Font>"
response.write(document.uploadr.hiddenVal.value())
ElseIf Form.State > 10 then
Const fsSizeLimit = &HD
Select case Form.State
case fsSizeLimit: response.write "<br><Font Color=red>Source form size (" & Form.TotalBytes & "B) exceeds form limit (" & Form.SizeLimit & "B)</Font><br>"
case else response.write "<br><Font Color=red>Some form error.</Font><br>"
end Select
End If'Form.State = 0 then
%>
Когда он достигает response.write(document.uploadr.hiddenVal.value())
он говорит, что переменная 'Document' не определена.
Что мне нужно сделать, чтобы получить значение текстового поля?