I have a String variable (in C#) that contain the full path of PDF file on my server (like that \"~/doc/help.pdf\").
I want that in click on button, this file will down
Try this code on your btn_Click:
btn_Click
Response.Redirect("~/doc/link.pdf");