Otwieranie dokumentu Word po stronie klienta z aplikacji Asp.net

Musimy otworzyć dokument Word, który znajduje się na serwerze na komputerze klienckim przy użyciu Microsoft Word. Rozwiązanie działa lokalnie, jednak po wdrożeniu na serwerze, jedyne, co się dzieje, to uruchomienie programu winword.exe na serwerze. Czy jest to możliwe przy użyciu interop lub javascript?

to jest kod do teraz

Microsoft.Office.Interop.Word.ApplicationClass wordApp = new Microsoft.Office.Interop.Word.ApplicationClass();

object file = FilePath + FileName;
lblError.Text = lblError.Text + file.ToString(); 
object readOnly = false;
object objTrue = true;
object missing = System.Reflection.Missing.Value;
object emptyData = string.Empty;
wordApp.Visible = true;
Microsoft.Office.Interop.Word.Document aDoc                         =
wordApp.Documents.Open(ref file,
         ref missing, ref readOnly,
         ref missing, ref missing, ref missing,
         ref missing, ref missing, ref missing,
         ref missing, ref missing, ref objTrue);

aDoc.Activate();

questionAnswers(4)

yourAnswerToTheQuestion