.NET news » Search results

Search results for query "data" (259):

Production Exception Logging for Dummies 101 (Updated)

Provides an easy-to-use "drop it in" Exception logging framework for ASP.NET 1.1 and 2.0 applications. Log to a database, receive an email with a description and a link to the reporting page with the exact exception, and even optional Syslog reporting. Complete article with source code downloads. Uses the new "Data" field in the .NET 2.0 Exception class.
2006-09-04 07:04:20   Source: Production Exception Logging for Dummies 101 (Updated)   Tags: ASP.NET Debug

SOA Tips: Address Scalability Bottlenecks with Distributed Caching

SOA makes application scalability easier, but getting the best performance out of your SOA means paying close attention to the details. We’ll give you some tips for coding your app more effectively and using distributed caching to remove data access bottlenecks.
2010-06-06 19:00:00   Source: SOA Tips: Address Scalability Bottlenecks with...   Tags: Performance

JavaScript Security: Web to Windows 8: Security

Web developers switching to Windows 8 development with JavaScript need to update their views on security. With the tools available in Windows 8, you can transform JavaScript security from a facade to a multifaceted defense system that protects both your data and your users.
2012-10-31 18:00:00   Source: JavaScript Security: Web to Windows 8: Security   Tags: Security

Speed SQL: Tuning Your Database Calls with Tier Interaction Profiling

Tier interaction profiling (TIP) is a feature of the Visual Studio profiling tools that measures the duration of synchronous calls to ADO.NET-compliant data stores. We’ll show you how TIP works and provide some best practices for using TIP to diagnose performance problems in your apps.
2010-07-29 19:00:00   Source: Speed SQL: Tuning Your Database...   Tags: Visual Studio

ASP.NET: Unit Testing in the Navigation for ASP.NET Web Forms Framework

The article will demonstrate the benefits of having a consistent approach to navigation and data passing in a Web Forms application, showing how this bears fruit when building Single-Page Interfaces. Although all the current buzz is around ASP.NET MVC, it will present a compelling argument for using the Navigation for ASP.NET Web Forms project I host on codeplex together with standard ASP.NET Ajax and DataBinding.
2012-05-31 18:00:00   Source: ASP.NET: Unit Testing in the Navigation for ASP.NET Web...   Tags: Testing

Database Export Wizard for ASP.net and SQL Server

With this article I would like to share a simple but useful little tool: ExportWizard, a Step Wizard for Database Export. It guides users through a few simple steps to choose a database object (table, view, or query), select columns, and export the data in any of the standard formats (CSV, HTML, XML, or SQL).
2010-05-20 10:55:00   Source: Database Export Wizard for ASP.net...   Tags: Database Examples

Declarative Data Parallelism Using Parallel LINQ

Applications can be single threaded or multithreaded. A single-threaded application is one in which the processor executes threads in a sequence, i.e., a thread would be scheduled by the operating system only if the execution of the currently running thread is complete. This approach doesn’t provide much system throughput (a measure of the amount of work done in unit time).

2010-12-27 18:00:00   Source: Declarative Data Parallelism Using...   Tags: Performance

Data-Bound Design: Create a Silverlight 4 Web Part for SharePoint 2010

When building custom SharePoint 2010 solutions, it makes a lot of sense to take advantage of Silverlight 4 on the front end. We’ll walk you through the process of building a Silverlight Web Part with Visual Studio and Expression Blend.
2010-08-30 19:00:00   Source: Data-Bound Design: Create a...   Tags: Visual Studio

Finally! Entity Framework working in fully disconnected N-tier web app

Entity Framework is world’s most difficult ORM for n-tier application. See how I have produced a 100% unit testable fully n-tier compliant data access layer following the repository pattern using Entity Framework.

Windows Phone 7: Sterling for Isolated Storage on Windows Phone 7

Learn how to leverage the Sterling open source database library to persist and query data locally in Windows Phone 7 apps with minimal effort, along with a simple strategy for managing state when an application is deactivated upon a user switching to another application.