Click here to Skip to main content
15,885,278 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralUsing Ajex Pin
Rinki Mukheraji19-Feb-08 18:07
Rinki Mukheraji19-Feb-08 18:07 
GeneralRe: Using Ajex Pin
Venkatesh Mookkan19-Feb-08 18:50
Venkatesh Mookkan19-Feb-08 18:50 
GeneralRe: Using Ajex Pin
Vasudevan Deepak Kumar19-Feb-08 19:06
Vasudevan Deepak Kumar19-Feb-08 19:06 
QuestionHow to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format Pin
Amit.Amit.Amit...19-Feb-08 18:02
Amit.Amit.Amit...19-Feb-08 18:02 
GeneralRe: How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format Pin
Venkatesh Mookkan19-Feb-08 18:07
Venkatesh Mookkan19-Feb-08 18:07 
GeneralRe: How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format Pin
Amit.Amit.Amit...19-Feb-08 18:16
Amit.Amit.Amit...19-Feb-08 18:16 
GeneralRe: How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format Pin
Amit.Amit.Amit...19-Feb-08 18:26
Amit.Amit.Amit...19-Feb-08 18:26 
GeneralRe: How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format [modified] Pin
Pritish20-Feb-08 5:09
Pritish20-Feb-08 5:09 
Software Development
How to Download any file from ASP.NET

You know, some formats (txt, gif etc.) will be shown on the browser rather than downloading when we try. Below is the script which will help you to download any file.
<!--[if !supportLineBreakNewLine]-->
<!--[endif]-->


Response.Clear();

Response.AddHeader(“Content-disposition”, “attachment; filename=”);

Response.WriteFile(“C:\”);

Response.End();

modified on Thursday, February 21, 2008 1:27 PM

Questionhow to show the panel scroll completely down when it is loaded. Pin
jagan12319-Feb-08 18:00
jagan12319-Feb-08 18:00 
AnswerRe: how to show the panel scroll completely down when it is loaded. Pin
Venkatesh Mookkan19-Feb-08 18:06
Venkatesh Mookkan19-Feb-08 18:06 
GeneralRe: how to show the panel scroll completely down when it is loaded. Pin
jagan12319-Feb-08 18:11
jagan12319-Feb-08 18:11 
GeneralRe: how to show the panel scroll completely down when it is loaded. Pin
Venkatesh Mookkan19-Feb-08 18:49
Venkatesh Mookkan19-Feb-08 18:49 
Questionmap project [modified] Pin
Member 435365819-Feb-08 17:31
Member 435365819-Feb-08 17:31 
Generalimage upload Pin
Ida_merry19-Feb-08 17:04
Ida_merry19-Feb-08 17:04 
GeneralRe: image upload Pin
Parwej Ahamad19-Feb-08 17:22
professionalParwej Ahamad19-Feb-08 17:22 
QuestionHow can I reiterate custom class object values to OTHER/MULTIPLE std aspx pages w/o using web controls? Pin
crystal915419-Feb-08 16:54
crystal915419-Feb-08 16:54 
AnswerRe: How can I reiterate custom class object values to OTHER/MULTIPLE std aspx pages w/o using web controls? Pin
Parwej Ahamad19-Feb-08 17:16
professionalParwej Ahamad19-Feb-08 17:16 
GeneralRe: How can I reiterate custom class object values to OTHER/MULTIPLE std aspx pages w/o using web controls? Pin
crystal915419-Feb-08 17:23
crystal915419-Feb-08 17:23 
GeneralRe: How can I reiterate custom class object values to OTHER/MULTIPLE std aspx pages w/o using web controls? Pin
Parwej Ahamad19-Feb-08 17:33
professionalParwej Ahamad19-Feb-08 17:33 
GeneralRe: How can I reiterate custom class object values to OTHER/MULTIPLE std aspx pages w/o using web controls? Pin
crystal915419-Feb-08 17:53
crystal915419-Feb-08 17:53 
GeneralRe: How can I reiterate custom class object values to OTHER/MULTIPLE std aspx pages w/o using web controls? Pin
Parwej Ahamad19-Feb-08 18:22
professionalParwej Ahamad19-Feb-08 18:22 
QuestionHaving trouble getting FormView to sync w/ GridView past first index page. Pin
SoulfoodOracle19-Feb-08 14:23
SoulfoodOracle19-Feb-08 14:23 
GeneralRe: Having trouble getting FormView to sync w/ GridView past first index page. Pin
Christian Graus19-Feb-08 15:10
protectorChristian Graus19-Feb-08 15:10 
GeneralIs it possible to to read the ftp file remote without downloading to the local drive Pin
Kennie_n200019-Feb-08 14:04
Kennie_n200019-Feb-08 14:04 
GeneralRe: Is it possible to to read the ftp file remote without downloading to the local drive Pin
Christian Graus19-Feb-08 15:10
protectorChristian Graus19-Feb-08 15:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.