473,698 Members | 1,997 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dynamically generate a MS Word document using ASP.Net

How we can Dynamically generate a MS Word document using ASP.Net?
--
Jijo kuruvila
trivandrum,Kera la,India
Nov 16 '05 #1
3 9333
Hi,

You could use Crystal Reports for this purpose - it supports exporting data
to a number of formats like pdf, excel, work etc. This MSDN article takes
you thru an example on it
http://msdn.microsoft.com/library/en...sedreports.asp

In case you don't want to use Crystal Reports, have a look at this article
http://www.aspnetpro.com/NewsletterA...200309so_l.asp
which talks about how to use Excel to convert data.

This codeproject article talks about how to create and modift Work documents:
http://www.codeproject.com/aspnet/wordapplication.asp

Also, there are a few controls @ www.asp.net which takes care of exporting
data.

You might also want to look @ Office PIAs as well
http://msdn.microsoft.com/library/de...dc_oxppias.asp

Personally, I prefer Crystal Reports.

HTH,
Rakesh Rajan

"jijo kuruvila" wrote:
How we can Dynamically generate a MS Word document using ASP.Net?
--
Jijo kuruvila
trivandrum,Kera la,India

Nov 16 '05 #2
BTW, I am assuming you are reporting data.

Regards,
Rakesh Rajan

"Rakesh Rajan" wrote:
Hi,

You could use Crystal Reports for this purpose - it supports exporting data
to a number of formats like pdf, excel, work etc. This MSDN article takes
you thru an example on it:
http://msdn.microsoft.com/library/en...sedreports.asp

In case you don't want to use Crystal Reports, have a look at this article:
http://www.aspnetpro.com/NewsletterA...200309so_l.asp
which talks about how to use Excel to convert data.

This codeproject article talks about how to create and modift Work documents:
http://www.codeproject.com/aspnet/wordapplication.asp

Also, there are a few controls @ www.asp.net which takes care of exporting
data.

You might also want to look @ Office PIAs as well:
http://msdn.microsoft.com/library/de...dc_oxppias.asp

Personally, I prefer Crystal Reports.

HTH,
Rakesh Rajan

"jijo kuruvila" wrote:
How we can Dynamically generate a MS Word document using ASP.Net?
--
Jijo kuruvila
trivandrum,Kera la,India

Nov 16 '05 #3
Another MSDN article:
http://support.microsoft.com/default...b;en-us;317719

HTH,
Rakesh Rajan

"Rakesh Rajan" wrote:
BTW, I am assuming you are reporting data.

Regards,
Rakesh Rajan

"Rakesh Rajan" wrote:
Hi,

You could use Crystal Reports for this purpose - it supports exporting data
to a number of formats like pdf, excel, work etc. This MSDN article takes
you thru an example on it:
http://msdn.microsoft.com/library/en...sedreports.asp

In case you don't want to use Crystal Reports, have a look at this article:
http://www.aspnetpro.com/NewsletterA...200309so_l.asp
which talks about how to use Excel to convert data.

This codeproject article talks about how to create and modift Work documents:
http://www.codeproject.com/aspnet/wordapplication.asp

Also, there are a few controls @ www.asp.net which takes care of exporting
data.

You might also want to look @ Office PIAs as well:
http://msdn.microsoft.com/library/de...dc_oxppias.asp

Personally, I prefer Crystal Reports.

HTH,
Rakesh Rajan

"jijo kuruvila" wrote:
How we can Dynamically generate a MS Word document using ASP.Net?
--
Jijo kuruvila
trivandrum,Kera la,India

Nov 16 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2399
by: Peter Kirk | last post by:
Hi there I have a form which submits a list of data to a web-application (which then saves to a database). The list consists of four input fields per row. Eg. <field_1.1><field_2.1><field_3.1><field_4.1> <field_1.2><field_2.2><field_3.2><field_4.2> <field_1.3><field_2.3><field_3.3><field_4.3> ....
4
2659
by: Jake Lewis | last post by:
I have an HTML page that loads fine including the .js file <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> <script language="JavaScript" type="text/JavaScript" src="ve3d.js" ></script> </head>
3
1909
by: Leonard | last post by:
I want to create a Word document that will display data from a database. I don't want to create the file on the server, I just want to stream it out directly to the user. When they click a button, the Word Save Open window will open, and allow the user to Save or Open the document in Word. I know I need to use response.binarywrite, but I don't know if it is possible to create the binary object without first saving it to a temporary file....
4
3968
by: josepe | last post by:
Hi, I want to do a dinamicly generation of a word doc in my ASP page. I do it with the next code: <% Response.ContentType = "application/msword" Response.AddHeader "content-disposition", "inline; filename=OrderFax.doc" %> But i have a problem with the margins of the word doc, by default the margins are: left:3.17 cm, right: 3.17cm.
3
11292
by: Brian Kwan | last post by:
Project Description: Develop a web application to help manage sale operations. There is a function that to generate a report using data in database, which is a Word document on server and let user to download and print it out. Problem: Found that it's risky to do Word automation on server side using ASP. The layout of report is a bit complicated. I've a idea of ASP call VB to automate a Word document, but don't know whether it's work or...
0
357
by: jijo kuruvila | last post by:
How we can Dynamically generate a MS Word document using ASP.Net??? -- Jijo kuruvila trivandrum,Kerala,India
1
1261
by: Kishore | last post by:
Hello, Is it possible to generate a CHM file dynamically, from an html file or a word document, through code. I searched on the net, but could not find any answers. I would like to generate a help file, for a particluar form/page on the fly. Any help is greatly appreciated. Thanking you for your time,
2
1936
by: KnotKnormal | last post by:
I would like to dynamically load a HTML page (or a Word document), which is embedded in a table when the user clicks on a hyperlink to go from HTML page one to HTML page two. For example, I would like the secretary at a school to update a Word document concerning homework assignments. This Word document would reside on the server. When changes are made it, these changes are automatically updated to the web page. This would simplify life...
3
1226
by: Ryan | last post by:
Hi All, I need my application to be able to generate a Microsoft Word document (Using Visual Basic 2005). So a user clicks a button (create document) and the Word document is created and populated with variable data. Is there any way to do this? Thanks.
11
2729
by: Faisal Vali | last post by:
Are there any guidelines people use that help them decide when it is better to dynamically generate all html elements using javascript versus actually writing some html and using it as scaffolding? I have been using the extjs framework ( I haven't see this library critiqued much on this forum - unlike prototype, jquery and dojo which the regulars here tend to eviscerate - unless i've missed some threads, which is quite possible) and it...
0
8598
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9152
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9016
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8887
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6515
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4360
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4613
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3037
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2321
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.