Deliver User-Friendly Reports from Your Application with SQL Server Reporting ServicesThis article discusses: An introduction to Reporting ServicesDesigning and deploying reportsUsing the Reporting Services Web serviceSecuring reportsThis article uses the following technologies: SQL Server, ASP.NET, Visual Basic .NETCode download available at: SQLServerReportingServices.exe (222 KB) Browse the Code Online Flexible reporting capabilities are a requirement for [...]
Tag Archives: application
Reporting: Deliver User-Friendly Reports from Your Application with SQL Server Reporting Services
CLR Inside Out: .NET Application Extensibility, Part 2
.NET Application Extensibility, Part 2Jack Gudenkauf and Jesse KaplanCode download available at: AddIns2007_03.exe (177 KB) Browse the Code Online In our first column, where we introduced the new System.AddIn namespace in the Base Class Libraries (BCLs), we walked through the typical process customers undertake in order to provide extensibility through their host applications. We discussed the functionality [...]
Data Access: Building a Desktop To-Do Application with NHibernate
NHibernate is an Object Relational Mapper (OR/M), tasked with making it as easy to work with a database as it is to work with in-memory objects. It is one of the most popular OR/M frameworks for Microsoft .NET Framework development. But most users of NHibernate are doing so in the context of Web applications, so [...]
Data Points: The Enterprise Library Data Access Application Block, Part 3
Here is the same content in en-us.The Enterprise Library Data Access Application Block, Part 3Code download available at: DataPoints0510.exe (216 KB) Browse the Code Online E nterprise applications can have a wide variety of data update requirements. Sometimes you need to save multiple rows of changes at once within a single transaction. Other times, the [...]
SQL Server: Uncover Hidden Data to Optimize Application Performance
Uncover Hidden Data to Optimize Application PerformanceThis article discusses: Dynamic management views and functionsCauses of server waits Common index problems Problems associated with logical I/O This article uses the following technologies: SQL Server Many application performance problems can be traced to poorly performing database queries; however, there are many ways you can improve database performance. [...]
Application Life Cycle Events in ASP.NET architecture
Application Life Cycle EventsWhenever event occurs on the web page, the request is sent to the web browser; in our case, let the web server be IIS.The IIS picks up this request and looks for the server extensions. Each server extension is actually mapped to the IIS. Now, if the server extension of this request [...]
Performing Data binding in an ASP.Net application with Entity Framework C#
This is going to be the eighth post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here, the second one here , the third one here , the fourth one here, the fifth one here ,the sixth one here and the seventh one here. I have [...]
Using stored procedures with Entity Framework in an ASP.Net application
This is going to be the third post of a series of posts regarding ASP.Net and the Entity Framework and how we can use Entity Framework to access our datastore. You can find the first one here and the second one here.I have a post regarding ASP.Net and EntityDataSource. You can read it here.I have 3 more posts [...]