Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
I want server to generate a word document! (asp.net vs 2008)

I use word automation like this:
C#
Word.ApplicationClass oWordApplic = new Word.ApplicationClass();
object missing = System.Reflection.Missing.Value;
Word.Document oDoc = oWordApplic.Documents.Add(ref missing, ref missing,ref missing, ref missing);
oDoc.Activate(); 
oWordApplic.Selection.TypeText("test");
oWordApplic.Application.Quit(ref missing, ref missing, ref missing);	

the programs works well if I set compilation debug = "true" in web.config;
but if I set the the compilation debug = "false" in web.config, the programs do not works!!!

do not work means the word document is not created on the server and there is no any prompts!

anyone can help my to solve this problem?
Posted
Updated 5-Mar-13 12:34pm
v6
Comments
bbirajdar 5-Mar-13 9:40am    
"do not works!!!" ???????????

How can we understand what the problem is with this term "do not works!!!"...

If I say, my iPhone is not working, can you guess the reason why ?
wangerpang 5-Mar-13 18:35pm    
do not work means the word document is not created on the server and there is no any prompts!
works well means the word document is created and can be downloaded by the client

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900