----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: FreshCatchDas Message 3 in Discussion hi Raghu, what u said was exactly correct. Thanks. But i Want was write the file,without popup box like open/save. directly it should write into browser's harddisk(C:\Temp\) Dasu Maddukuri Tata Consultancy Services Mailto: [EMAIL PROTECTED] Website: http://www.tcs.com "BDOTNET" <[EMAIL PROTECTED]> 01/07/2004 01:32 PM Please respond to "BDOTNET" <[EMAIL PROTECTED]> To "BDOTNET" <[EMAIL PROTECTED]> cc Subject Re: down load to browser's hard disk New Message on BDOTNET down load to browser's hard disk Reply Recommend Message 2 in Discussion From: rags_rao path = request.querystring("file") Dim file As System.IO.FileInfo = New System.IO.FileInfo(path) '-- if the file exists on the server If file.Exists Then 'set appropriate headers Response.Clear() Response.AddHeader("Content- Disposition", "attachment; filename=" & file.Name) Response.AddHeader("Content-Length", file.Length.ToString()) Response.ContentType = "application/octet-stream" Response.WriteFile(file.FullName) Response.End put this code in pageload of aspx page say download.aspx use download.aspx?file=mypic.gif as download url Regards, Raghunandan R, Software Engineer, Nous Infosystems, #1,1st main,1st block,kormangala,bangalore - 560034. ph: +91-80-553 4208/552 2086 View other groups in this category. Also on MSN: Start Chatting | Listen to Music | House & Home | Try Online Dating | Daily Horoscopes To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. Need help? If you've forgotten your password, please go to Passport Member Services. For other questions or feedback, go to our Contact Us page. If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. Remove my e-mail address from BDOTNET. ForwardSourceID:NT00002226 ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/BDotNet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
