2009-04-30 24 views
0

ヘッダーとフッター情報をWordに追加する方法はありますか?私は現在、ASP.Netを使用してHTMLコンテンツをワードファイルに書き出しています。以下ASP.NetからWord文書にヘッダーとフッターを追加します

+0

あなたはどのような技術を使用していますか? Word 2007+(.docx)に直接書き込むことができます。これは、基本的にはXML形式のzipファイルです(ひどく文書化されていませんが、気にする必要はありません)。古いバイナリ形式を使用している場合は、ドキュメントに書き込むために使用しているサードパーティのツールによって異なります。 – Keith

+0

私はASP.Netで作業しています。現在、サードパーティのツールはありません。 –

+0

.docまたは.docxを書いていますか? – Keith

答えて

1

コードHTML形式を使用せずに、MS Wordドキュメントを生成することができます -

object oTrue = true; 
object oFalse = false; 
object oMissing = System.Reflection.Missing.Value; 
object novalue = System.Reflection.Missing.Value; 
object missing = System.Reflection.Missing.Value; 
object fileName = "normal.dot"; 
object newTemplate = false; 
object docType = 0; 
object isVisible = true; 

Microsoft.Office.Interop.Word.ApplicationClass questionClient = new Microsoft.Office.Interop.Word.ApplicationClass(); 

Microsoft.Office.Interop.Word.Document questionDoc = questionClient.Documents.Add(ref fileName, ref newTemplate, ref docType, ref isVisible); 
questionDoc.Activate(); 

//adding header 
string logoPath = Server.MapPath("~//photos//logica_logo_black.JPG"); 
Microsoft.Office.Interop.Word.Shape logoCustom = null; 
questionClient.ActiveWindow.ActivePane.View.SeekView = Microsoft.Office.Interop.Word.WdSeekView.wdSeekCurrentPageHeader; 
logoCustom = questionClient.Selection.HeaderFooter.Shapes.AddPicture(logoPath, ref oFalse, ref oTrue, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); 
logoCustom.Select(ref oMissing); 
logoCustom.Name = "CustomLogo"; 
logoCustom.Left = -47; 
logoCustom.Top = -19; 

//adding footer 
questionClient.ActiveWindow.ActivePane.View.SeekView = Microsoft.Office.Interop.Word.WdSeekView.wdSeekCurrentPageFooter; 
questionClient.ActiveWindow.Selection.Font.Name = "Verdana"; 
questionClient.ActiveWindow.Selection.Font.Size = 8; 
Object CurrentPage = Microsoft.Office.Interop.Word.WdFieldType.wdFieldPage; 
questionClient.ActiveWindow.Selection.TypeText("For Logica Internal Use Only"); 
questionClient.ActiveWindow.Selection.TypeText("            "); 
questionClient.ActiveWindow.Selection.TypeText("Page "); 
questionClient.ActiveWindow.Selection.Fields.Add(questionClient.Selection.Range, ref CurrentPage, ref oMissing, ref oMissing); 
questionClient.ActiveWindow.Selection.TypeText("              "); 
questionClient.ActiveWindow.Selection.TypeText(DateTime.Today.ToString("MM/dd/yyyy")); 

//saving and closing the document 
questionClient.Documents.Save(ref oMissing, ref oMissing); 
questionClient.Quit(ref oMissing, ref oMissing, ref oMissing); 
関連する問題