What is the best way to create reports in ASP.NET MVC1? Any link for learn how to create reports?
The easiest way is to create .rdlc files, which can be presented in ASP.NET by using the ReportViewer control. Everything you need is already included in Visual Studio.
Tutorials can be found by googling for ReportViewer, on MSDN or on http://www.gotreportviewer.com/.
I found the following app from codeplex really helpful when i was trying to figure out how to do reporting in asp.net mvc. -> Sample Report Solution
Hope this helps!
Related
I was trying to add a wizard type of look for the first run of my ASP.net application
How can I add wizards to my ASP.net application?
There are dozens of tutorials on this subject. A quick google gets these for example:
Walkthrough and
Using the control
I am developing a ASP.NET MVC3.0 application and need to create some reports. I am not getting how i can integrate Crystal Reports or any other Free Reporting tool with MVC3.0 to implement reports. Could you let me know how can i generate reports in ASP.NET MVC3.0
Thanks.
Please go through this blog. The author explained step by step in visual representation.
http://kbochevski.blogspot.in/2010/01/aspnet-mvc-and-crystal-reports.html
You can see this blog in which you can implement the crystal report in ASP.NET MVC razor.
http://atikpassion.blogspot.com/2014/11/aspnet-mvc-sap-crystal-report.html
A silly question to ask. Actually I am a developer in ASP.NET, but as per the project requirements, I have to work on Classic ASP. Now I would like to know how and where to write the Classic ASP code in MS VISUAL STUDIO-2008. Since when we start a new website it says ASP.NET Website and not ASP.
A little search on SO will lead you to this It should works also in VS2008
Just add a new item in your project, choose text file and change the extension to asp.
If you want to write code of classic-asp in visual studio then write it in source file
which is the design page. Dont write it in class(.cs) file.
But my suggestion is if you wanna write efficient code of classic-asp then use Dreamweaver
Can any body give me code to impement ELMAH error handling for my asp.net mvc application..
I need to know step by step process to implemnt?
thanks
I have used elmah with asp.net mvc 2.0.You would need to download the source from here, add the dll to your project and then change your web config to get elmah working it is explained well here. Also have a look at a similiar post to get more information or if you run into problems.
Check out my blog series on logging in MVC. The first article covers getting Elmah set up and running for MVC and expands on what Hanselman does.
There is a link to downloadable code at the end of the article. Hope that helps.
http://dotnetdarren.wordpress.com/
Using VB.NET AND ASP.NET
Am new to web design and development, I want to know how to design and develop a web page using vb.net and asp.net.
I need a link of samples and help sites for developing a web page.
Have a look at http://www.asp.net/ -- lots of good examples, videos, etc.
Have you considered picking up a book? I recommend Begining ASP.NET 3.5 that I'm currently reading... this book does a good job of getting you started with ASP.NET development. The code samples are in both VB and C#.