is there any way i could detect opening of download file dialog box on web pages like hyperlink click event occurs and download file dialog box appears.... ??

and can i edit the filename in it ...... like attaching some website name along with filename .... so when the user download any file it automatically rename in to website-filename.pdf etc pro-grammatically

can we use input tag for it ?? or have to make customcontrols for it ?? thanks if any help provided

take care. regards, newbiefreak

link|improve this question

70% accept rate
People, what is with the downvote fest? – mplungjan Aug 9 '11 at 11:37
why giving minus votes ... ?? – NewbieFreak Aug 9 '11 at 11:54
feedback

2 Answers

up vote 2 down vote accepted

You can just make a hyperlink with its href to a regular file, your browser will prompt to download it.

As for renaming the file, all you could do is create a special page which sends the file contents and correct headers, and specifying another name. You'll have to send the content-disposition header, as such:

Content-disposition: attachment; filename=yourfilename.extension

link|improve this answer
but how do i change the filename if i want do to it on download link click .... – NewbieFreak Aug 9 '11 at 11:33
thanks with it i can set default file name to website-xyz.txt .. one part of my problem is solved but with it i cant pick up the orginally filename like xyz.pdf or abc.txt by using it fixed my download link filename and its extension to xyz.txt any solution for this problem – NewbieFreak Aug 9 '11 at 12:11
@NewbieFreak - They told you how to do it. You need to use serverside code! – epascarello Aug 9 '11 at 12:24
feedback

You can send a Content-disposition header to force a file downlaod box and specify a default filename.

http://support.microsoft.com/kb/260519

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.