When I am saving a file on my server using asp.net application, it gives me "Access Denied", but I dont have the case on my localhost server.
knowing that I gave all users full permissions.
I use the word.application to save my file.
Dim WordApp As Word.ApplicationClass = New Word.ApplicationClass()
Dim aDoc1 As New Word.Document()
aDoc1.Activate()
aDoc1.Content.Text = FileContent
aDoc1.SaveAs(fileURL)
WordApp.Quit()
aDoc1 = Nothing
WordApp = Nothing
any help please.
Thanks in advance.
knowing that I gave all users full permissions.
I use the word.application to save my file.
Dim WordApp As Word.ApplicationClass = New Word.ApplicationClass()
Dim aDoc1 As New Word.Document()
aDoc1.Activate()
aDoc1.Content.Text = FileContent
aDoc1.SaveAs(fileURL)
WordApp.Quit()
aDoc1 = Nothing
WordApp = Nothing
any help please.
Thanks in advance.