Click here to Skip to main content
15,886,873 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: pdf to take the "," Pin
indian14330-Jan-09 2:01
indian14330-Jan-09 2:01 
QuestionDocking problem Pin
Xmen Real 29-Jan-09 21:55
professional Xmen Real 29-Jan-09 21:55 
AnswerRe: Docking problem Pin
Xmen Real 29-Jan-09 22:04
professional Xmen Real 29-Jan-09 22:04 
AnswerRe: Docking problem Pin
Manas Bhardwaj30-Jan-09 0:00
professionalManas Bhardwaj30-Jan-09 0:00 
QuestionAllow only user logged in download ? Pin
god4k29-Jan-09 21:49
god4k29-Jan-09 21:49 
AnswerRe: Allow only user logged in download ? Pin
Ashutosh Phoujdar29-Jan-09 22:46
Ashutosh Phoujdar29-Jan-09 22:46 
AnswerRe: Allow only user logged in download ? Pin
Manas Bhardwaj29-Jan-09 23:26
professionalManas Bhardwaj29-Jan-09 23:26 
AnswerRe: Allow only user logged in download ? Pin
god4k30-Jan-09 0:12
god4k30-Jan-09 0:12 
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);

System.IO.FileStream sourceFile = new System.IO.FileStream(path, System.IO.FileMode.Open);

long FileSize = sourceFile.Length;
byte[] content = new byte[(int)FileSize];
sourceFile.Read(content, 0, (int)sourceFile.Length);
sourceFile.Close();
Response.BinaryWrite(content);
Response.End();
QuestionSet Input Radio to Checked in GridView Pin
HatakeKaKaShi29-Jan-09 21:27
HatakeKaKaShi29-Jan-09 21:27 
AnswerRe: Set Input Radio to Checked in GridView Pin
Sundar_R29-Jan-09 21:38
Sundar_R29-Jan-09 21:38 
GeneralRe: Set Input Radio to Checked in GridView Pin
HatakeKaKaShi29-Jan-09 21:42
HatakeKaKaShi29-Jan-09 21:42 
AnswerRe: Set Input Radio to Checked in GridView Pin
Nishant Singh30-Jan-09 0:08
Nishant Singh30-Jan-09 0:08 
QuestionI have doubt regarding MasterPages & Content Pages... Pin
Radiv Jeshya29-Jan-09 20:55
Radiv Jeshya29-Jan-09 20:55 
AnswerRe: I have doubt regarding MasterPages & Content Pages... Pin
Radhakrishnan G.29-Jan-09 21:05
Radhakrishnan G.29-Jan-09 21:05 
AnswerRe: I have doubt regarding MasterPages & Content Pages... Pin
SeMartens29-Jan-09 21:06
SeMartens29-Jan-09 21:06 
GeneralRe: I have doubt regarding MasterPages & Content Pages... Pin
Radiv Jeshya29-Jan-09 21:32
Radiv Jeshya29-Jan-09 21:32 
GeneralRe: I have doubt regarding MasterPages & Content Pages... Pin
SeMartens29-Jan-09 21:44
SeMartens29-Jan-09 21:44 
AnswerRe: I have doubt regarding MasterPages & Content Pages... Pin
Sundar_R29-Jan-09 21:45
Sundar_R29-Jan-09 21:45 
AnswerRe: I have doubt regarding MasterPages & Content Pages... Pin
SachinKumar M29-Jan-09 21:56
SachinKumar M29-Jan-09 21:56 
QuestionAsp pages Pin
5fingers29-Jan-09 20:22
5fingers29-Jan-09 20:22 
AnswerRe: Asp pages Pin
Christian Graus29-Jan-09 20:23
protectorChristian Graus29-Jan-09 20:23 
GeneralRe: Asp pages Pin
N a v a n e e t h29-Jan-09 21:11
N a v a n e e t h29-Jan-09 21:11 
QuestionCustom Control Problem Pin
Vishal0929-Jan-09 20:10
Vishal0929-Jan-09 20:10 
AnswerRe: Custom Control Problem Pin
Christian Graus29-Jan-09 20:22
protectorChristian Graus29-Jan-09 20:22 
QuestionProblem Regarding XML Menu Tree Pin
ais0729-Jan-09 19:56
ais0729-Jan-09 19:56 

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.