Как сохранить файл в виде веб-страницы, отфильтрованной в моем веб-приложении с помощью C#
I have a web application that is suppose to save a document in my signature folder on my computer. I need the file type/format to be in web page,filtered so that I can use that file in my outlook email signature. the source code below is what I am using to save the file,kindly advise which file type/format should I use. I have tried .htm and .html,however it seem not to be saving as web page,filtered. Only when I manually open the rtf document and save as .web page,filtered - then it saves in a format that my signature is able to pick up. wordDoc.SaveAs2(@"C:\\Users\Tom\\AppData\\Roaming\\Microsoft\\Signatures\\Signature.htm"); What is strange is that,both ways of saving gives me a .htm file extension.
Что я уже пробовал:
Я пробовал типы файлов htm и html,но ни один из них,похоже, не сохраняет файл как веб - страницу,отфильтрованную, в результате подпись не сохраняется должным образом - однако если я открою файл .rtf вручную и сохраню как тип веб-страницы, отфильтрованную-то подпись электронной почты будет в порядке.
Все,что мне нужно, это иметь возможность сохранить файл в веб-странице, отфильтрованном формате, используя предоставленный код C#
wordDoc.SaveAs2(@"C:\\Users\Tom\\AppData\\Roaming\\Microsoft\\Signatures\\Signature.htm");