Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Saving Word Doc to MemoryStream Or some other way
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
VB.NET 1.1
OS:
Windows XP SP2
Divers
Thread ID:
01054426
Message ID:
01055204
Vues:
26
Hi,

Thought this is .NET - where does classic ASP come into it ?

Anyway, could you just use oDoc.SaveAs("somefile.doc") as suggested and send this as the response. e.g.:
Response.ClearContent();
Response.ClearHeader();
Response.ContentType = "application/ms-word";
Response.WriteFile("somefile.doc");
Response.Flush();
Response.Close();
Of course you'd need some type of unique file naming to prevent client conflicts...
HTH,
Viv



>My Goal is :
>
>Do a find and Repalce on a Document, Capture the Changed data, then send the final result back to an ASP classic page. this page will then display the standard Open WinWord application, Save file, etc...
>
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform