telerik report won't load into the MAUI web view - c#

I'm trying to implement Telerik reporting into the MAUI app using webview as mentioned in the official documentation. It loads the view page with HTML5 Report viewer but after that it doesn't show the report as expected. It says no report. What can be the reason for this?
this is the documentation link: https://docs.telerik.com/reporting/knowledge-base/displaying-telerik-report-in-net-maui-and-maui-blazor-applications
I'm expecting to display telerik report in the MAUI app

Sounds like an issue with the settings of the REST service.
You can use the example REST service from installation (example C:\Program Files (x86)\Progress\Telerik Reporting R1 2023\Examples\CSharp.NET 6\ReportingRestServiceCorsDemo) or use the Visual Studio project template and create a new one.
After you configure the REST service, set it in the ReportViewer ServiceUrl.

Related

Missing empty Web Application template

I Just installed VS 2015 . Then I create New Project. Under Templates for C#/Web there is only one option and that is ASP.NET Web Application. That Template Creates a fully loaded application.
I need to know how to get Empty web app?
I tried to click on "Click here to go online and find templates" . but still, could not find the template for the C# empty web app.
After select ASP.NET Web Application and click on "OK", you will see an empty template.

Create an ASP.NET Web Application to be an Office 365 task pane AddIn

Even though C# and others are listed as a possible language, all of the samples I have found show how to create a task pane AddIn using HTML5/JavaScript only.
I've already gone through all of these:
How to: Create your first task pane app by using "Napa" Office 365 Development Tools
How to: Create a basic app for SharePoint by using "Napa" Office 365 Development Tools
How to: Create your first mail app for Outlook by using "Napa" Office 365 Development Tools
How to: Create your first content app for Excel by using "Napa" Office 365 Development Tools
and others, and they are all HTML5/JavaScript! Even the MSDN samples are HTML5/JavaScript only!
How can I have an ASP.NET Web Application talk to Office 365 so it can provide a task pane control and edit the selected text?
Finally, I've made it! It is not difficult. Firstly you have to use Visual Studio. When you develop directly from browser, download and open that project in Visual Studio. You can follow this way to make very easy example
Create HTML5/JavaScript application like in the 'How to' (first link)
Add new ASPX page into the Home folder
Open your App xml in the Solution folder
Here you can change Source location to new ASPX web page
Start application

C# solution integration-Sharepoint

I am new to Sharepoint. I have an application created in C# Visual Studio 2010(web application).I have to show the contents and the solution inside of SharePoint so that the C# application could be used by its users without the need of Visual Studio having to be installed in each user's desktop.
I have to upload the C# solution to sharepoint portal server and then create a link in documents tab which will open this application. If that's the case,i am not sure how to do that any assistance will be appreciated.
Just open the SharePoint Document library in Windows explorer mode copy your Solution. Please check the below link.
http://techtrainingnotes.blogspot.in/2010/05/sharepoint-2010-windows-explorer-view.html
Be aware that any .NET app can run underneath SharePoint if the directory is excluded as a managed path.
Access to that app is easily done - either a simple redirect there or use the Page Viewer Web Part (an IFrame) to display the app "inside" SharePoint.
Easy - no code required.
Best Regards,
David M. Sterling
Sterling International Consulting Group

Why ReportViewer do not return data when created inside another ASP.NET Web Application?

I'm using report viewer to generate some reports.
I've created a new web application project inside my solution (that already has one web application project) and I've made it work. (Created the dataSet, webForm with the reportviewer and all the .rdlc reports)
It was working, but when I ran my solution, two ports are opened. One for my previous Web Application and another port for the new one.
Now I need to use only ONE port. The I tried to create all the same stuff that I've created this time inside the already existing WebApplication project. After this, when I ran the project, the report page open at the browser, but the data that should be returned isn't. Only the ReportViewer toolbox appears, with no data...
What would be the problem? Is it possible to use only one port to both web application projects? How? Thanks in advance.
In the Properties window for your project (rt click the .proj file and choose Properties), there should be a Web option on the left side of the screen. In the bottom half of that page there's a setting to toggle usage of the VS dev server, as well as a specific port number.
I've just dicovered how to make it work. My first web applicattion was using framework 3.5 and the new one was using the framework 4.0.
I turned my new web application project to 4.0 framework, compiled and turned back to framework 3.5. Now that's all ok, working and returning data.
Probably because of the ReportViewer version. (I'm using VS 2010)

Different result on devmachine and buildserver with ASP.NET (MVC 1)

We have a .NET 3.5/ASP.NET MVC 1 solution. Everything works great on the developer machines but after that build starts on the build server we get:
"Only Content controls are allowed directly in a content page that contains Content controls."
For example
<error code="ASPPARSE" file="/temp/Views/Account/ChangePasswordSuccess.aspx" line="4" column="0" timeStamp="10/10/2011 01:25:46">
<![CDATA[Only Content controls are allowed directly in a content page that contains Content controls.]]>
</error>
Same ASP.NET MVC, same .NET. Visual Studio 2008 is not installed on the buildserver.
Any idea?
Environment
Build server: CC.NET 1.6
OS: Windows 2003 R2 SP2
IIS 6
Yeah. You build server likely builds a prod build, visual studio likely builds a dev build. The security restrictions and other configurations for these are likely different.
In visual studio, switch the build target off of debug and see if it still happens
That must be failing on the developer's machine, just that it does while trying to show the corresponding view / not while building it.
Have the developer build with it turned on, and locate the view that's failing the build.
Update: actually, I didn't pay close attention to the message, it is very likely you just have a page that uses a master page and has content Outside the content controls.
As i have seen according to your message there may some layout related problem in your page. which generates some html contents at run time...
have look on this asp.net forum post.
http://forums.asp.net/t/1251873.aspx/1
as Munim Abdul said, it may be possible in that way but i do not think it is the issue with an experienced person like you..
I have faced this error when i was learning sharepoint and in normal asp.net applications..
search out.. may be this will help you little bit..

Categories