M
memiller
I have an ASP.NET web form that has the following input control:
FORM name='UploadForm' method='POST' encType='multipart/form-data'
action=... runat='server'
INPUT type='file' id='importFile' size='60'
If I understand this right, when I hit the submit button the file
entered into the input should be passed to the next web page. What
I'm struggling with is trying to figure out how I can read or insert
that file into the newly opened page instead of saving the file to the
server.
Does anyone have any suggestions or can point me to a resource for
this?
FORM name='UploadForm' method='POST' encType='multipart/form-data'
action=... runat='server'
INPUT type='file' id='importFile' size='60'
If I understand this right, when I hit the submit button the file
entered into the input should be passed to the next web page. What
I'm struggling with is trying to figure out how I can read or insert
that file into the newly opened page instead of saving the file to the
server.
Does anyone have any suggestions or can point me to a resource for
this?