I am working on asp.net and i have to download pdf file from page. I wrote the following code, it download well but type of file become "file".
Response.Clear()
Response.ContentType = "application/octet-stream"
Response.AppendHeader("Content-Disposition", "filename=" + UnderProcessArticle_RadComboBox.SelectedValue)
Response.TransmitFile(Server.MapPath("~\Articles\" + UnderProcessArticle_RadComboBox.SelectedValue + ".pdf"))
I want that when file download it would be in .pdf extention.what channging i should do????