Page 1 of 2
Web preview
Posted: Mon Oct 17, 2011 4:50 pm
by jozed
Why web preview show message: "To view this page ensure that Adobe Flash Player version 10.2.0 or greater is installed."
I'm sure that Adobe Flash Player version 11 is installed.
Web preview
Posted: Tue Oct 18, 2011 1:49 am
by HighAley
Hello.
jozed wrote:Why web preview show message: "To view this page ensure that Adobe Flash Player version 10.2.0 or greater is installed."
I'm sure that Adobe Flash Player version 11 is installed.
What operation system do you use? 32-bit or 64-bit?
Thank you.
Web preview
Posted: Tue Jun 12, 2012 11:04 pm
by pdt1704
Hi, I have issue the same, my operating is 64 bit, Please help.
Web preview
Posted: Wed Jun 13, 2012 2:23 am
by Vladimir
Hello,
Please specify which browser are you using? Is the error reproduced on any browser?
Thank you.
Web preview
Posted: Wed Jun 13, 2012 3:13 am
by pdt1704
Hi,
I used browser IE8, I try test with FireFox and see issue same.
Web preview
Posted: Thu Jun 14, 2012 3:58 am
by Vladimir
Hello,
We could not reproduce the problem on .NET 4.0 framework.
The attached archive contains our test project.
Thank you.
Re: Web preview
Posted: Mon Sep 03, 2012 1:24 pm
by dsaddan
I have the same problem. Here is my configuration:
Windows 7 64-bit
Browsers:
Visual Studio 10
I tested yoyr sample project which is based on MVC 3 and is called
C:\Program Files (x86)\Stimulsoft Reports.Web for MVC 2012.1 Trial\Samples\MvcViewerFx (Razor)
The sample works
OK (= the reports are displayed OK).
I then created an MVC 4 project which is based on this sample. Here are the steps:
1. Created a new MVC 4 Internet project.
2. Adde references to
- Stimulsoft.Base, Stimulsoft.Report, Stimulsoft.Report.Mvc
located in C:\Program Files (x86)\Stimulsoft Reports.Web for MVC 2012.1 Trial\Bin
3. Added <system.web>, <compilation>, <assemblies>
<add assembly="Stimulsoft.Base, ...
<add assembly="Stimulsoft.Report, ...
<add assembly="Stimulsoft.Report.Mvc, ..
</assemblies>,</compilation>, </system.web>
to web.config
4. Copied the Content/Reports, Contenr/Localization, HomeControllwe and Views/Home/Index.cshtml from the original project to me new project.
5. I then complied and testes the new project. It displayed
"To view this page ensure that Adobe Flash Player 10.2 or greater is installed."
My project is attached.
Please advise.
Dror
Re: Web preview
Posted: Mon Sep 03, 2012 1:26 pm
by dsaddan
I tested the sample and it works OK.
However, it is based on MVC3 and not MVC4.
The problem seems to be with MVC4. Please see my other post earlier today in this thred.
Dror
Re: Web preview
Posted: Wed Sep 05, 2012 12:54 pm
by Vladimir
Hello,
Please add the following code to the
head section on the
Site.Master page:
Code: Select all
<%= Html.StiMvcViewerFxRenderScripts() %>
Thank you.
Re: Web preview
Posted: Wed Sep 05, 2012 2:33 pm
by dsaddan
There is no site.master in an MVC project. I guess you meant _Layout.cshtml. Indeed it works:
@using Stimulsoft.Report.Mvc;
<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
@Html.StiMvcViewerFxRenderScripts()
</head>
Thanks for your help.
Dror