Wrox Programmer Forums
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional 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 March 8th, 2006, 12:52 AM
Authorized User
 
Join Date: Jan 2006
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks Manish ,



I added the line <identity impersonate="true"></identity>
in web.config and it works fine

Thank you a lot
Bye,

 
Old March 1st, 2012, 06:38 AM
Registered User
 
Join Date: Nov 2011
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,

you can easily create Word file in .NET and export Word file from ASP.NET application.

Here is a sample C# code:
Code:
// Use the component in free mode.
ComponentInfo.SetLicense("FREE-LIMITED-KEY");

// Create a new empty document.
DocumentModel document = new DocumentModel();

// Add document content.
document.Sections.Add(new Section(document, new Paragraph(document, "Hello World!")));

// Microsoft Packaging API cannot write directly to Response.OutputStream.
// Therefore we use temporary MemoryStream.
using (MemoryStream documentStream = new MemoryStream())
{
	document.Save(documentStream, SaveOptions.DocxDefault);

	// Stream file to browser.
	Response.Clear();
	Response.ContentType = "application/vnd.openxmlformats";
	Response.AddHeader("Content-Disposition", "attachment; filename=Document.docx");

	documentStream.WriteTo(Response.OutputStream);

	Response.End();
}
This code is independent of Office Automation and Word application, instead it uses this C# / VB.NET Word library.





Similar Threads
Thread Thread Starter Forum Replies Last Post
to create PDF from word file sunilbedre Excel VBA 0 November 29th, 2007 06:39 AM
How to create MS Word like Callout in .NET ashu_from_india Visual Studio 2005 0 July 12th, 2007 06:48 AM
Access denied, can't create xml file from ASP.NET goldablasha C# 3 February 27th, 2007 05:50 AM
Reading word file in asp.net 1.1 anujrathi ASP.NET 1.0 and 1.1 Professional 0 August 4th, 2006 01:09 AM
Can I create my own File Field control in ASP.Net vbmazza ASP.NET 1.0 and 1.1 Professional 1 February 22nd, 2006 11:45 AM





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