Web preview
Web preview
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.
I'm sure that Adobe Flash Player version 11 is installed.
Web preview
Hello.
Thank you.
What operation system do you use? 32-bit or 64-bit?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.
Thank you.
Web preview
Hi, I have issue the same, my operating is 64 bit, Please help.
Web preview
Hello,
Please specify which browser are you using? Is the error reproduced on any browser?
Thank you.
Please specify which browser are you using? Is the error reproduced on any browser?
Thank you.
Web preview
Hi,
I used browser IE8, I try test with FireFox and see issue same.
I used browser IE8, I try test with FireFox and see issue same.
Web preview
Hello,
We could not reproduce the problem on .NET 4.0 framework.
The attached archive contains our test project.
Thank you.
We could not reproduce the problem on .NET 4.0 framework.
The attached archive contains our test project.
Thank you.
- Attachments
-
- 1942.Sample.part2.rar
- (799.08 KiB) Downloaded 817 times
-
- 1941.Sample.part1.rar
- (2.86 MiB) Downloaded 738 times
Re: Web preview
I have the same problem. Here is my configuration:
Windows 7 64-bit
Browsers:
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
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
Windows 7 64-bit
Browsers:
- Chrom, IE 9
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
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
- Attachments
-
- Screen capture of an MVC4 project based on the sample - The report is not displayed
- 03092012_162138.png (90.5 KiB) Viewed 4918 times
-
- Screen capture of the original sample - report is displaued OK
- 03092012_162153.png (98.39 KiB) Viewed 4918 times
-
- MvcApplication3.7z
- The MVC 4 project based on Stimulsoft Reports.Web for MVC 2012.1 Trial\Samples\MvcViewerFx (Razor)
- (6.07 MiB) Downloaded 501 times
Re: Web preview
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
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
Hello,
Please add the following code to the head section on the Site.Master page:
Thank you.
Please add the following code to the head section on the Site.Master page:
Code: Select all
<%= Html.StiMvcViewerFxRenderScripts() %>
Re: Web preview
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
@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