我已将视频添加到按钮单击播放的内部网站上。它在我的开发环境中运行良好,但是当我将它移动到Test服务器时它将无法播放。当我点击按钮时,屏幕会刷新(它改变标题图像,所以我知道它正在工作),但不播放视频。
我已检查IIS
,并为MIME
设置了.mp4
类型。我将Visual Studio
设置更改为使用IIS Express
,并且在那里运行良好。
非常感谢任何帮助。
Try
Dim path As String
Dim ProcessProperties As New ProcessStartInfo
ProcessProperties.FileName = "wmplayer.exe"
ProcessProperties.Arguments = (Server.MapPath("~") + "\content\videos\etic_demo_video.mp4")
path = Server.MapPath("~")
Process.Start(ProcessProperties)
Catch vx
Me.lblMessage.Text = System.Configuration.ConfigurationManager.AppSettings("ErrorMessage-CannotLoadVideo")
etic1.WriteToEventLog("welcome.aspx.btnHelpVideo_Click: " & vx.Message.ToString, Diagnostics.EventLogEntryType.Error)
End Try