Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > .NET 2.0 and Visual Studio. 2005 > .NET Framework 2.0
|
.NET Framework 2.0 For discussion of the Microsoft .NET Framework 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the .NET Framework 2.0 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 9th, 2004, 07:32 AM
Authorized User
 
Join Date: Aug 2004
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to fitchic77
Default retrieve word/excel from database as binary

can this be done with asp.net. I need to display either a word or excel document (simulating an ole object) on the web...

can anyone direct me to a resource?

Last edited by fitchic77; October 16th, 2010 at 12:45 PM..
 
Old December 7th, 2004, 03:00 PM
Registered User
 
Join Date: Nov 2003
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I did not try for world but you can use the following to export via a web site to an Excel file:
Context.Response.ContentType = "application/vnd.ms-excel";


private void Page_Load(object sender, System.EventArgs e)
{
  ArrayList al = (ArrayList)Session["Report"];
  Session.Remove("Report");
  this.Response.ContentType = "application/vnd.ms-excel";
  this.Response.AddHeader("Content-Disposition", (string)al[0]);
  Response.Write((string)al[1]);
}

- Jon.
http://www.allamericanjobs.net








Similar Threads
Thread Thread Starter Forum Replies Last Post
How to convert Word files into Binary Stream kesar C# 4 March 28th, 2007 04:43 AM
Retrieve data from word table Paul_Tic Access VBA 2 May 26th, 2006 11:31 AM
Binary "Database" for a game - Need a how-to =) Daedric C# 2 March 6th, 2005 05:17 AM
Save BINARY FILE in ACCESS database gasma1975 Access 4 February 10th, 2005 12:16 PM
Why user download word file is binary when open Andraw Classic ASP Basics 5 January 17th, 2005 12:41 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.