can't user request.form after upload !!!
-
i wana have upload source and post others field of my database in same form , and then when i user request.form("txt") , it produce me this error!!! Cannot use Request.Form collection after calling BinaryRead. i waste much times on net to find way , but non of them are useful! help me. thanks. Have good day and time
-
i wana have upload source and post others field of my database in same form , and then when i user request.form("txt") , it produce me this error!!! Cannot use Request.Form collection after calling BinaryRead. i waste much times on net to find way , but non of them are useful! help me. thanks. Have good day and time
You can't use Request.Form, as the form data is sent along with the file data. The upload component will read the form data when the file data is read, and you have to ask the component for the form data. Upload components usually have a Form method that works similar to Request.Form. --- b { font-weight: normal; }