vote up 0 vote down star

I have a link of a file, and I don't know how to add it to imagebutton. I want to see the 'open-save-cancel' , screen when imagebutton is clicked, but imagebutton doesn't seems to be taking the link of file as a file, but taking it as a page url and tring to open the file url as page.

Thanks

flag

55% accept rate

1 Answer

vote up 2 vote down
    //OnClick server Handler

    Response.Clear();
    Response.AddHeader(
        "content-disposition", string.Format("attachment; filename={0}", "file_name"));

    Response.ContentType = "application/octet-stream";

    Response.WriteFile("file_path");
    Response.End();
link|flag

Your Answer

Get an OpenID
or

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