Click here to Skip to main content
15,922,574 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Searching between 2 date Pin
shaiba4-Feb-05 3:46
shaiba4-Feb-05 3:46 
GeneralRunning Number Pin
asta lavista3-Feb-05 17:25
asta lavista3-Feb-05 17:25 
GeneralRe: Running Number Pin
Yulianto.3-Feb-05 17:58
Yulianto.3-Feb-05 17:58 
GeneralRedirect users to webmail Pin
langhal13-Feb-05 11:00
susslanghal13-Feb-05 11:00 
Generalhref Pin
cmarmr2-Feb-05 11:10
cmarmr2-Feb-05 11:10 
GeneralRe: href Pin
Mike Ellison2-Feb-05 12:24
Mike Ellison2-Feb-05 12:24 
Generaldownload a file from website Pin
cmarmr2-Feb-05 6:49
cmarmr2-Feb-05 6:49 
GeneralRe: download a file from website Pin
JKroschel2-Feb-05 7:11
JKroschel2-Feb-05 7:11 
What you need to do is open it up on the backend with ASP, PHP, etc. and then send it to the client without showing the data type. Here is an example in Perl:

open(LOG,"<$filename");
@fileholder=<LOG>;
close(LOG);
print "Content-Type:application/x-download\n";
print "Content-Disposition:attachment;filename=$filename\n\n";
print @fileholder;

The important part here is the content type and the content disposition. Application/X-download forces a download instead of trying to open it in the browers. The content disposition keeps the filename, otherwise it is named "document" with no MIME type.
Generalnetwork programming in asp or asp.net Pin
JKroschel2-Feb-05 5:53
JKroschel2-Feb-05 5:53 
GeneralRe: network programming in asp or asp.net Pin
Scott Serl2-Feb-05 10:19
Scott Serl2-Feb-05 10:19 
GeneralRe: network programming in asp or asp.net Pin
JKroschel2-Feb-05 10:31
JKroschel2-Feb-05 10:31 
GeneralRe: network programming in asp or asp.net Pin
kundan_ocp9-Feb-05 20:16
kundan_ocp9-Feb-05 20:16 
QuestionHow to be notified if a new record was added? Pin
phytos1-Feb-05 21:05
phytos1-Feb-05 21:05 
AnswerRe: How to be notified if a new record was added? Pin
JKroschel2-Feb-05 6:06
JKroschel2-Feb-05 6:06 
GeneralWebsite network login problem - Help Pin
harish subramanian1-Feb-05 8:34
harish subramanian1-Feb-05 8:34 
GeneralRe: Website network login problem - Help Pin
raouls1-Feb-05 22:13
raouls1-Feb-05 22:13 
GeneralRe: Website network login problem - Help Pin
harish subramanian2-Feb-05 4:15
harish subramanian2-Feb-05 4:15 
GeneralRe: Website network login problem - Help Pin
JKroschel2-Feb-05 5:25
JKroschel2-Feb-05 5:25 
GeneralRe: Website network login problem - Help Pin
harish subramanian2-Feb-05 5:33
harish subramanian2-Feb-05 5:33 
GeneralRe: Website network login problem - Help Pin
JKroschel2-Feb-05 5:41
JKroschel2-Feb-05 5:41 
GeneralRe: Website network login problem - Help Pin
raouls2-Feb-05 19:23
raouls2-Feb-05 19:23 
Generalsubject :programming with .NET Framework to browsing my bank account, buy and sell stock shares Pin
Close Network1-Feb-05 5:54
Close Network1-Feb-05 5:54 
Generalweb service consumer Pin
tucker1-Feb-05 1:26
tucker1-Feb-05 1:26 
GeneralSIzing the height of the html drop down box in IE Pin
phil71731-Jan-05 22:58
phil71731-Jan-05 22:58 
GeneralRe: SIzing the height of the html drop down box in IE Pin
Ted Ferenc1-Feb-05 1:19
Ted Ferenc1-Feb-05 1:19 

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.