|
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{action}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
} |
|
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
} |
|
I followed the instructions.
https://www.syncfusion.com/forums/136619/i-use-report-error-webpage But it works well on the development machine.
But when it comes up, IIS will have problems as per attachments. ------------------------
SCRIPT5007: Unable to get property 'showExceptionsInDialog' of undefined or null reference File: ej.web.all.min.js, Line: 10, Column: 7321489 -------------------------
|
We have checked the mentioned problem by loading the ReportViewer sample and its working properly at our end. So can you please share the issue reproducible “ej.web.all.min.js” script file or version detail to validate the mentioned problem at our end. For your reference, we have prepared a sample and it can be downloaded from below location,
Sample: http://www.syncfusion.com/downloads/support/directtrac/general/ze/ReportSample-227014046.zip
|
|
Attachment not attached
I Upload Complete but no filename on Attach file: I just have to close the window. And Submit But there is no attachment. |
We have fixed the mentioned problem and now you can upload the files in this forum. |