Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to upload file & return to Parent page when close child form

Status
Not open for further replies.

icy111

Programmer
Dec 13, 2001
39
US
Hi,

Is there ways to do the following:
1. Open the pop up window from parent page.
2. Upload 3 file attachments from a pop-up window.
3. Close & return the 3 file names to the parent form.
4. Option to clear the fileupload textbox if there is a need.

Kindly help.

Thanks in advance.

Regards
Icy111
 
Yes, it's possible. What have you done so far?


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Hi,

I have changed my method of writing the codes.
Now there are 3 files name with path that are stored in listbox. I wanted to save those 3 physical files to a folder.
How to do this in asp.net 2.0. using VB?

the following are my codes:
Dim fileUploadName as ArrayList()
For Each fileUploadName As System.Web.UI.HtmlControls.HtmlInputFile In fileName
fileUploadName.PostedFile.SaveAs(strPath + System.IO.Path.GetFileName(fileUploadName.PostedFile.FileName))

Next

Urgent help needed.

Thanks a lot.

regards
icy111
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top