Click here to Skip to main content
15,914,016 members
Home / Discussions / C#
   

C#

 
AnswerRe: How can I read data from printer port before printing based on printer port in C# Pin
Christian Graus6-May-08 21:43
protectorChristian Graus6-May-08 21:43 
QuestionHow to get the changed group name from Active Directory Pin
TOMCAT816-May-08 20:09
TOMCAT816-May-08 20:09 
Questionproblem with a dropdown control inside repeater Pin
Supreet6-May-08 19:35
Supreet6-May-08 19:35 
AnswerRe: problem with a dropdown control inside repeater Pin
Christian Graus6-May-08 20:03
protectorChristian Graus6-May-08 20:03 
Questionpass a text from a form to a Crystal report header Pin
imannasr6-May-08 19:16
imannasr6-May-08 19:16 
AnswerRe: pass a text from a form to a Crystal report header Pin
Christian Graus6-May-08 20:02
protectorChristian Graus6-May-08 20:02 
GeneralRe: pass a text from a form to a Crystal report header Pin
imannasr6-May-08 20:15
imannasr6-May-08 20:15 
GeneralRe: pass a text from a form to a Crystal report header Pin
Christian Graus6-May-08 21:39
protectorChristian Graus6-May-08 21:39 
GeneralRe: pass a text from a form to a Crystal report header Pin
imannasr6-May-08 23:25
imannasr6-May-08 23:25 
GeneralRe: pass a text from a form to a Crystal report header Pin
Christian Graus7-May-08 11:53
protectorChristian Graus7-May-08 11:53 
Questioncan you help me about a powerfull report builder in C# , exept Crystall Report Pin
imannasr6-May-08 18:43
imannasr6-May-08 18:43 
AnswerRe: can you help me about a powerfull report builder in C# , exept Crystall Report Pin
Christian Graus6-May-08 19:14
protectorChristian Graus6-May-08 19:14 
GeneralRe: can you help me about a powerfull report builder in C# , exept Crystall Report Pin
imannasr6-May-08 19:41
imannasr6-May-08 19:41 
GeneralRe: can you help me about a powerfull report builder in C# , exept Crystall Report Pin
darkelv6-May-08 19:58
darkelv6-May-08 19:58 
GeneralRe: can you help me about a powerfull report builder in C# , exept Crystall Report Pin
imannasr6-May-08 20:09
imannasr6-May-08 20:09 
AnswerRe: can you help me about a powerfull report builder in C# , exept Crystall Report Pin
Shorgov6-May-08 21:55
Shorgov6-May-08 21:55 
GeneralRe: can you help me about a powerfull report builder in C# , exept Crystall Report Pin
imannasr6-May-08 23:22
imannasr6-May-08 23:22 
Questionhow to download .exe files on click of link in asp.net Pin
NarVish6-May-08 18:38
NarVish6-May-08 18:38 
AnswerRe: how to download .exe files on click of link in asp.net Pin
Anindya Chatterjee6-May-08 19:02
Anindya Chatterjee6-May-08 19:02 
GeneralRe: how to download .exe files on click of link in asp.net Pin
NarVish6-May-08 19:38
NarVish6-May-08 19:38 
GeneralRe: how to download .exe files on click of link in asp.net Pin
Vasudevan Deepak Kumar6-May-08 20:47
Vasudevan Deepak Kumar6-May-08 20:47 
AnswerRe: how to download .exe files on click of link in asp.net Pin
Christian Graus6-May-08 19:14
protectorChristian Graus6-May-08 19:14 
AnswerRe: how to download .exe files on click of link in asp.net Pin
Vasudevan Deepak Kumar6-May-08 19:23
Vasudevan Deepak Kumar6-May-08 19:23 
AnswerRe: how to download .exe files on click of link in asp.net Pin
Shorgov6-May-08 22:08
Shorgov6-May-08 22:08 
try different approach. Use this code in some button click event handler

FileStream fs = null;
string strContentType = "application/octet-stream";
string strPath = Server.MapPath("FILE_LOCATION_HERE") + "\\";
String strFileName = "FILE_NAME_HERE";
if (File.Exists(strPath + strFileName))
{
byte[] bytBytes = new byte[fs.Length];
fs = File.Open(strPath + strFileName, FileMode.Open);
fs.Read(bytBytes, 0, (int)fs.Length);
fs.Close();
Response.AddHeader("Content-disposition", "attachment; filename=" + strFileName);
Response.ContentType = strContentType;
Response.BinaryWrite(bytBytes);
Response.End();
}

Strahil Shorgov

GeneralRe: how to download .exe files on click of link in asp.net Pin
NarVish7-May-08 0:18
NarVish7-May-08 0:18 

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.