Click to See Complete Forum and Search --> : how can popuup occurs


saimukesh
July 31st, 2006, 01:59 AM
Hi, i want to know how the popup window occurs every time an uploading takes place from clietn side,so that server knows the a file is uploaded..
Thanks

ericmul1
August 1st, 2006, 06:40 PM
Without being a total jerk i have to say, it's not very easy to read your question.

I'm guessing you would like to know how you can create a popup (as in a messagebox) when a file is uploaded. I would not reccomend this because the Messagebox in .NET 2.0 isn't functioning very good cross browser wise. The better sollution is to use a label that you can fill in your code with something like 'label.text = "upload is complete".

Suzi167
August 1st, 2006, 08:40 PM
You can aslo use some javascropt for pop-up boxes
for example:

Response.Write("<script>alert('Record Update Completed Successfully')</script>");



Do some research and you will find ploenty of information on that topic.
Suzi