hi all,
I've got an upload.aspx file where users can upload their content, in this case the content will mostly be saved as word (".doc") documents. Now I'm developing a page, let's say display.aspx, where these word documents should be directly displayed, without any interaction from any users. So whithout anyone having to download the file or anything else. It's like these word documents should somehow be displayed (or possibly converted) as ".html" files through source code. But I've still got to be able to add some additional source code together with these documents. I hope I explained my problem well, but perhaps the following example will clear it:
Does someone know of such a thing is somehow possible in asp.net? Or does anyone has another solution for my problem?
Thanks
I've got an upload.aspx file where users can upload their content, in this case the content will mostly be saved as word (".doc") documents. Now I'm developing a page, let's say display.aspx, where these word documents should be directly displayed, without any interaction from any users. So whithout anyone having to download the file or anything else. It's like these word documents should somehow be displayed (or possibly converted) as ".html" files through source code. But I've still got to be able to add some additional source code together with these documents. I hope I explained my problem well, but perhaps the following example will clear it:
Code:
<%@ Page Language="VB"%>
<script runat="server">
Sub Page_Load()
Dim strTest as string
strTest = "Some text"
End Sub
</script>
<html>
<head>
</head>
<body>
<!-- #include virtual="another_file.aspx" -->
*here should come the content of the word document*
<%=strTest%>
</body>
</html>
Does someone know of such a thing is somehow possible in asp.net? Or does anyone has another solution for my problem?
Thanks