Undrar om det finns ngt system för att öppna redigera samt spara worddokument direkt på webben. Via asp activeX eller java eller ngt liknande. Jodå! Jag fattar inte riktigt, det saxade exeplet är väl bara till för att skapa en excelsida på servern. Jag vill kunna öppna worddokumentet lokalt, redigera, och spara ner det direkt på servern. Citat: Hm... Ett redigerbart div lager kanske? Som skickar upp till servern. Stoppar in koden i Worddokument med ActiveX-kontroll (Word200+). Spara med ActiveX-kontrollen. Hur det kommer se ut vet jag inte...Worddokument
Jag vet ju att det går att läsa och skapa wordfiler med response.addheader men det största problemet är ju att spara dokumenten på ett smidigt sätt.
Någon som har en idé?
Oj, det postades lite fel tror jag!Sv: Word dokument
Nog har jag en idé, fast jag kan inte testa den. Kolla i t.ex. VB och leta lämplig kontroll. Kolla alla metoder. Överför till asp. Ska saxa en sak också:
Dim ExcelSheet
Set ExcelSheet = CreateObject("Excel.Sheet")
This code starts the application creating the object (in this case, a Microsoft Excel spreadsheet). Once an object is created, you refer to it in code using the object variable you defined. In the following example, you access properties and methods of the new object using the object variable, ExcelSheet, and other Excel objects, including the Application object and the ActiveSheet.Cells collection. For example:
' Make Excel visible through the Application object.
ExcelSheet.Application.Visible = True
' Place some text in the first cell of the sheet.
ExcelSheet.ActiveSheet.Cells(1,1).Value = "This is column A, row 1"
' Save the sheet.
ExcelSheet.SaveAs "C:\DOCS\TEST.XLS"
' Close Excel with the Quit method on the Application object.
ExcelSheet.Application.Quit
' Release the object variable.
Set ExcelSheet = Nothing
sök lite på detSv: Word dokument
MVH JesperSv: Word dokument
-"formateringar"
Vad menar du?
Jag vill öppna, ändra, skapa och spara som ett worddokument med http.
MVH JesperSv: Word dokument