I am finding that when I access our application from IE 11 on the localhost web server, everything functions perfectly. However, when I access the application from a different computer on the network, I get a continuous, non-ending pre-load with the circular graphic and the document never loads. The local web server is Windows Server 2012, IIS 8.5 and using Internet Explorer 11 to access the application. The other two computers are a Windows Server 2003 w/ IE 10 and the other is a Windows Server 2008 w/ IE 11. This same loading action occurs on both of those computers. Any ideas? The code is below.
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Session("validlogin") <> 1 Then
Response.Redirect("default.aspx")
End If
Dim ds As DataSet
ds = GetReportList(Request("id"))
Dim zfilepath As String
zfilepath = ds.Tables(0).Rows(0)("txtReportFilePath")
TextControl1.LoadTextAsync(Server.MapPath(zfilepat h), TXTextControl.Web.StreamType.MSWord)
End Sub