Since ReportViewer must be used with ASPX and that there is a lot of differences between WebForms and MVC, should I still go for a way to include ReportViewer control in my MVC application (as a partial view), or it is better to search for some other option? If it is not god idea to use ReportViewer in MVC, what other options do I have?
Is it a bad idea to use ReportViewer control in MVC 5.2 (.NET 4.5) application
607 views Asked by ingbabic At
1
There are 1 answers
Related Questions in PARTIAL-VIEWS
- Accessing value from dynamic object
- Return partial View if model state was not valid
- MVC Login form in all page i want using PartialView
- Binding Model data to form in ASP.NET MVC
- MVC - Html.DropdownListFor disappearing when selectpicker class is added to HTML attributes
- Model is null while rendering view
- How to reference dropdown in MVC Application
- how to add partial hbs file inside master hbs file in sugarcrm
- Laravel trying to add custom css file inside a partial view with @include
- Passing model data to partial view
- Update partial view on non-MVC Asp.Net Core 6 RazorPages with Ajax
- C# MVC multiple loading javascript
- Is there any way we can use .cshtml partial view in a React web application?
- Partial form saving and loading without full page postback in ASP.NET Core 7 Razor Pages?
- Create a partial view in MVC c# that use a Javascript object with some parameter
Related Questions in REPORTVIEWER
- Getting Browser not supported for Report Viewer - Visual studio 2019
- Need to be able to load different reports into the same report viewer, based on the selection of a combobox value How do i do this?
- Problem with loading rdlc in report viewer
- Report Viewer in .NET8 to windows form application
- Changing the text of the paragraph generated by Report Viewer
- SSRS Export from Report Viewer mangles report (Excel, Word, PDF, etc)
- Could not load file or assembly 'microsoft.reportviewer.common (VS2022)
- XSS Atack for Microsoft Report Viewer in c#
- why print directly from rdlc/report viewer, the print output has a red marking in vb.net
- How to set the data source manually and print RDLC reports directly without report viewer control from list in VB.NET
- RDLC ReportViewer toobox cannot be used in VS 2022
- C# LocalReport: how to add custom code from a different directory
- Getting ReportViewer processing error Visual Studio 2022
- Create report with Microsoft Report Viewer PDF/A compliance
- How can I change the TargetServerVersion to SQL Server 2008 in Visual Studio 2022? VS not showing solution properties "general" tab
Related Questions in ASP.NET-MVC-5.2
- Partial view dropdown contents filtered by other dropdown selection
- I got stuck on ModelState.IsValid in ASP.NET MVC
- Partial View error HttpServerUtility.Execute blocked while waiting for an asynchronous operation to complete
- Routing cannot map action parameters correctly
- How to write a general rule to redirect all user urls to one valid Url by using asp.net mvc 5?
- Is it possible that an ASP.NET httpContextBase ever be null? or Request? or UserAgent?
- MVC application under NGNIX rule to run application with virtual directory URL
- unable to redirect to the line from where the action method is called in mvc
- ASP.NET MVC error cannot convert lambda expression to type 'string' because it is not a delegate type
- Server.GetLastError() returns null when Internal Server Error (500) occurs
- How to convert MVC5 project to SDK style
- How to set 2 routes point to the same controller in ASP.NET MVC 5
- Authenticate Asp.net 4.7.2 application to Azure AD using x509 certificate
- C# ASP.NET API constructor looping on WIndows Server 2008 R2
- How to custom validate specific data type system-wide in Aspnet MVC5?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Unfortunately
ReportViewerrequiresviewStateand that's not in MVC.As you notice you will need to go through some hacks to make it work, if you google more you might find some libraries/github repos that will make that process easy.
Your best bet is to build it from scratch and get away from
webformtechnologies but that's not also that easy, I know telerik built such things but it's not free although really worth it.You just have to see what is the better option for you. This was an advantage of webform, just drag and drop the control and voila, but in MVC it takes more work.