2
Answers

File downloading

Srikanth Reddy

Srikanth Reddy

11y
929
1
 Response.ContentType = dr["projecttype"].ToString();
  Response.AddHeader("Content-Disposition", "attachment;filename="+dr["filename"]+"");
  Response.BinaryWrite((byte[])dr["size"]);
 Response.End();


Can anybody explain these four steps clearly?
they are related to file downloading concept....
plzzzz its needed very quickly...

Answers (2)