|
See if your <form runat = "server"> is anything special? FileUpload will automatically find the only HtmlForm on the page and add an attribute to it, so that the browser knows how to upload the file encoding.
If you add two <form runat = "server"> after adding Master, or other special circumstances, it will cause the client to ignore the file upload. |
|