.net - Manipulating Word 2007 Document XML In C#

Jan 25, 2011

I am trying to manipulate the XML of a Word 2007 document in C#. I have managed to find and manipulate the node that I want but now I can't seem to figure out how to save it back. Here is what I am trying:

// Open the document from memoryStream
Package pkgFile = Package.Open(memoryStream, FileMode.Open, FileAccess.ReadWrite);
PackageRelationshipCollection pkgrcOfficeDocument = pkgFile.GetRelationshipsByType(strRelRoot);
foreach (PackageRelationship pkgr in pkgrcOfficeDocument)
{
if (pkgr.SourceUri.OriginalString == "/")
[code]...

View 4 Replies


Similar Messages:

Msword - Convert Word 2007 Document To Word 2003 Programmatically ?

Apr 15, 2010

any component or library (preferably open source) that would allow me to convert Word 2007 documents to Word 2003 with ASP.NET?

View 3 Replies

How To Open Word Document 2007 And Save Format As .xps At Server Side

Nov 3, 2010

How to open word document 2007 and save formate as .xps at server side.

I want the user to open word docx at server side user will click the button to open document which will be execute at server side. I want to show to my client a xps formate of docx which will be converted at server side(from .docx to .xps).

My code is running on local correctly. but at iis5.1 it's not working & giving an exception :-

System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80070005.

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.

[Code]....

View 1 Replies

DataSource Controls :: How To Export DataTable To Word 2007 / Excel 2007 & CSV

Mar 23, 2010

I am using the below code to Export DataTable to Word,Excel,CSV format & it's working fine. But problem is that this code export to MS Word 2003,Excel 2003 & CSV version. I need to Export my DataTable to MS Word 2007,Excel 2007 & CSV because I am supposed to handle more than 100,000 records at a time and as we know Excel 2003 supports for only 65,000 records.

how to export DataTable or DataSet to MS Word 2007,Excel 2007 & CSV.

[Code]....

View 1 Replies

How To Stream An Excel 2007 Or Word 2007 File Using C#

Mar 25, 2010

I'm working on a web app and need to stream various files. I can do pdfs, images, and older Office documents. However, when I try to do with 2007 documents, it breaks. Here is my code:

Response.Buffer = true;
Response.Clear();
Response.ClearContent();
Response.ClearHeaders();
switch (FileExtension.ToLower())
{
case "pdf":
Response.ContentType = "application/pdf";
break;
case "doc":
Response.ContentType = "application/msword";
break;
case "docx":
Response.ContentType = "application/vnd.ms-word.document.12";
break;
case "xls":
Response.ContentType = "application/vnd.ms-excel";
break;
case "xlsx":
Response.ContentType = "application/vnd.ms-excel.12";
break;
default:
Response.ContentType = "image/jpeg";
break;
}
Response.BinaryWrite(buffer);

The error that I get is:

An invalid character was found in text content. Error processing resource 'http://DomainName/GetFile.aspx.

View 2 Replies

How To Export A Datatable To MS Word 2007 / Excel 2007 And Csv

Mar 23, 2010

I am using the below code to Export DataTable to MS Word,Excel,CSV format & it's working fine. But problem is that this code export to MS Word 2003,Excel 2003 version. I need to Export my DataTable to Word 2007,Excel 2007,CSV because I am supposed to handle more than 100,000 records at a time and as we know Excel 2003 supports for only 65,000 records.

how to export DataTable or DataSet to MS Word 2007,Excel 2007.

[Code]....

View 1 Replies

Controls :: Read And Import MS Word Document To Database Using Microsoft Interop Word Library

Feb 25, 2016

I have QuestionTable.

ID Question Answer1 Answer2 Answer3 Answer4

But I want import from MS Word into table. I have question like this:

Question:   @1.The capital of India.

 Answer:$A) Dushanbe;$B) Moscow;$C) Delhi;$D) Kabul;

@2.The capital of Tajikistan.

$A) Dushanbe;$B) Moscow;$C) Delhi;$D) Kabul;

@3.The capital of Afganistan.

$A) Dushanbe;$B) Moscow;$C) Delhi;$D) Kabul;

Output result:

ID Question Answer1 Answer2 Answer3 Answer4

1 1.The capital of India. A) Dushanbe; B) Moscow; C) Delhi; D) Kabul;

View 1 Replies

MS Word Mailmerge Like Functionality To Allow Export To Word Document From Web Application?

Jul 5, 2010

I have requirement where I need to allow users to upload a Word document with place holders for certain fields which can be found in the database. This will be their template. For example the place holders might be prepended with @@ or something. For example

Dear @@Title @@Lastname

They then can grab a record and hit export to Word document. This will then let them choose the template. They can select the template and then click continue. I will then get the template and replace the @@Title with the title field in the database for the selected record. I am not sure where to start or what components I need to do this.

From my initial investigation it seems that I can do this with the new open XML standard for Office 2007. So perhaps I should read in the template and save all the contents to a db table somewhere. Then when the use wants to export I get the contents again and then do a search and replace for the @@ placeholders and link them properly. Then save the document to the output stream again which will then bring up the save dialog on their browser.

I am using ASP.Net MVC and am in a hosted environment. I was also maybe contemplating dynamically creating a new View type and dynamically creating new views when the user uploads a template. Not sure that this approach will work though.

View 2 Replies

Web Forms :: Open Word Document In Word Program Not In Browser

Jan 11, 2011

I have a word document which opens in a web browser using ASP.NET 2.0 this is the code:

[Code]....

THIS WORKS, PROMPTING THE USER WITH "OPEN" "SAVE" "CANCEL" OR SOME USERS WITH "SAVE" "CANCEL" DEPENDING ON USER INTERNET SECURITY SETTING. BUT FOR SECURITY ISSUES, MY BOSS WANT THIS WORD DOCUMENT TO BE OPENED IN WORD PROGRAM. (MICROSOFT WORD 93,97 ETC) IS THIS POSSIBLE....? OFCOURSE SAVING THE FILE IS OKAY, JUST OPENING THE DOCUMENT SHOULD BE NOT BROWSER.

View 3 Replies

Web Forms :: Convert Word Document To PDF Document Using ITextSharp

May 9, 2012

I want when user upload  a doc file it convert into pdf. How can i do this. I read that itextsharp convert it.

View 1 Replies

Set An Index To A Single Word On Word-document, By Some Asp Commands?

Mar 3, 2011

I would like to know about commands of : How can I set an index to a single word on my word-document, by some asp commands.(Word-basic ...)Also, how to merge two files to a single word file (rtf).

View 1 Replies

Web Forms :: Displaying Word & Excel 2007 Documents?

Jul 22, 2010

I am loading documents into our Oracle database and then retrieving them for the users to view. So far PDF, DOC, XLS, CSV, etc. all perform as expected, however; DOCX, XLSX, etc. files have one annoyingly persistent issue. When the document is downloaded by the user and they open it you get the first in a series of messages: The file 'thefile.docx' cannot be opened because there are problems with the contents. Details: The file is corrupt and cannot be opened. and then: Word found unreadable content in 'thefile.docx'. Do you want to recover the contents of this document? If you trust the source, click Yes. After clicking yes the file opens and all of the content appears correct. Including images, formatting, tracked changeds and comments, equations, etc. I have tried multiple methods along these lines to no avail. I simply want the files to open without the false-positive error messages. I am using VS2010, with the website targeted at .Net Framework 2.0.

objConn =
New
OracleConnection(gstrConnectionString)
objConn.Open()
cmd = New
OracleCommand
cmd.Connection = objConn
cmd.CommandText = "select DOCUMENT_NAME,DOCUMENT_TYPE,DOCUMENT
from DOCUMENT_TABLE where DOCUMENT_ID='"
& strDocumentID & "'"
dr = cmd.ExecuteReader
dr.Read()

View 5 Replies

How To Detect A Password In A Word 2003 Or 2007 File

Apr 14, 2010

My users like to upload password-protected Word documents into our custom document management system. I'd like to add a validation to check for the password and refuse the upload if it has a password.

Automating Word - with COM interop - is out of the question because this is a server side application.

View 3 Replies

Export Crystal Report To Microsoft Word 2007?

Jun 4, 2010

how to export crystal report to Microsoft Word 2007.what will be the content type of it.I use in VB.NET 2002.

View 1 Replies

Convert Word Document To PDF Document?

Jun 10, 2010

I want to convert to Word Document in a PDF document. I do not want to use any third party control. I want to do it on my own. Can somebody tell me how to start with it?

View 7 Replies

VS 2008 - Create Mail Merge Doc Using MS Word 2003/2007?

Apr 13, 2010

I need to create some mail merge documents and was wondering if anyone knew the best way of doing this from asp.net. Currently I have set up .dot template files with bookmarks and then use COM to open these files pass the data and save. I can then stream the file to the users desktop. The issue i have is that to get this working when i release it is by installing Wrord on the server which I would prefer not to do.

way of passing data to word docs and then opening them to the user. The reason why i need to use word, is that the user needs to be able to modify the doc.

View 7 Replies

Web Forms :: Open A Mht File With Word 2000 / 2003 2007

Jan 22, 2010

I open a mht file with the streamreader and I do some handling with the file.

Then I would like te open this content with word (200,2003,2007).

What's the correct content type to use for the Response.WriteFile method ?

As normally a mht file has content type multipart/related ...

The code i use is:

[Code]....

View 2 Replies

Databases :: Displaying Word & Excel 2007 XML Documents From ASPX?

Jul 23, 2010

I am loading documents into our Oracle database and then retrieving them for the users to view. So far PDF, DOC, XLS, CSV, etc. all perform as expected, however; DOCX, XLSX, etc. files have one annoyingly persistent issue.

When the document is downloaded by the user and they open it you get the first in a series of messages:

The file 'thefile.docx' cannot be opened because there are problems with the contents.

Details: The file is corrupt and cannot be opened.

and then:

Word found unreadable content in 'thefile.docx'. Do you want to recover the contents of this document? If you trust the source, click Yes.

After clicking yes the file opens and all of the content appears correct. Including images, formatting, tracked changeds and comments, equations, etc.

I have tried multiple methods along these lines to no avail. I simply want the files to open without the false-positive error messages.

I am using VS2010, with the website targeted at .Net Framework 2.0.

objConn =
New
OracleConnection(gstrConnectionString)
objConn.Open()

[Code]....

View 15 Replies

Returning Word Document From .net?

Mar 18, 2010

protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
{

//string path = Server.MapPath("Help File editorial.doc");
string path = Server.MapPath("check.doc"); [code]...

What is wrong in the above code When i clk on imgbutton nothing happens. just page get refresed. I hv tried octet-stream as well as .doc

View 9 Replies

How To Preview A Word Document Or PDF

Jul 8, 2010

I have a list box that contains a collection of documents that a user has uploaded. I would like to make some sort of preview window on the page that allows the user to see the document without having to download it and open up word or reader.

View 2 Replies

C# - How To Read A Word Document

Sep 14, 2010

I want to read a word document in asp.net and i need to convert the document words into bytes .So how to do that ?

View 2 Replies

Create MS-Word Document In MVC?

Jun 9, 2010

I have to generate reports in both ms-word and pdf format....i have it working in pdf w/ iTextSharp. With iTextSharp, I create a new FileStreamResult for the MVC Action to return .How can I create a word document and have the user download it when an action is invoked?

[Code]....

View 6 Replies

How To Extract These Details From A Word Document

Dec 14, 2010

is there a way to extract these details from a word document? because there are many resume formats,finding the name itself would be a huge problem.

View 4 Replies

How To Read And Display Word Document

Apr 8, 2010

I have a file up-loader by which i upload the .doc file in a folder on server.]

I want to display the whole word document content on a label as it is in .doc file in C#.

View 2 Replies

Security :: How To Protect Word Document

Aug 19, 2010

User downloads a document from a specified site, saves to the local disk and fills in confidential details. When other users logs on to this computer and if they try to access the file, the document should not be accessible. Also consider that the document can be saved to a common server too, in which case, no one else other than the person who downloaded and filled the document should be able to open the document.

some options to protect this document.

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved