.NET news » Search results

Search results for query "net" (410):

Programming Windows Mobile 5.0 Applications Using the .NET Compact Framework

Microsoft has recently launched the Windows Mobile 5.0 platform for Pocket PCs and Smartphones. With the proliferation of Windows Mobile-based devices in the marketplace, companies are gradually mobilizing their enterprising applications to let their staff gain the competitive mobile advantage.

Compilation and Deployment in ASP.NET 2.0

It's crucial to understand how your ASP.NET code compiles in order to debug your Web applications effectively. ASP.NET 2.0 has changed the way compilation and deployment works, and in this article I'll dig in and show you how compilation works now and what has changed from ASP.NET 1.x.

Gain Control of your .NET Logging Using log4net

Don't build logging capabilities for your applications from scratch; you can get robust and flexible logging functionality for your .NET applications with the free open source log4net framework, and then extend it to support custom needs.
2006-08-04 18:27:52   Source: Gain Control of your .NET Logging...   Tags: Examples Debug

Ranorex - free GUI test and automation library for C++, Python and all .NET languages

Ranorex is a Windows GUI test and automation library for C++, Python and for all .NET languages. Applications and websites can be automated using Python script or a .NET program. All new Visual Studio 2005 controls are supported and can be automated.

Sending Email in ASP.NET 2.0: HTML-Formatted Emails, Attachments, and Gracefully Handling SMTP Exceptions

This article looks at the advanced email-related options. Article covers how to send HTML-formatted emails, how to include attachments, and how to gracefully handle SMTP exceptions when sending an email (such as invalid relay server credentials or if the relay server is offline).
2006-08-01 19:00:00   Source: Sending Email in ASP.NET 2.0:...   Tags: ASP.NET

Nine ASP.NET Site Navigation Problem Solutions: Part 1

Find out how to use ASP.NET 2.0's site navigation controls to not only make building site navigation displays simple, but also solve real-world problems, such as hiding selected pages, or displaying "breadcrumbs."
2006-07-14 16:27:17   Source: Nine ASP.NET Site Navigation Problem...   Tags: ASP.NET

Build an ASP.NET Virtual Earth Map Server Control

Shows how to dynamically get the coordinates of the street address property and compute the exact Virtual Earth map tile, download and display in the control from memory. Supports aerial, road and hybrid images, image size, and zoom level.
2006-07-08 18:41:16   Source: Build an ASP.NET Virtual Earth Map...   Tags: ASP.NET

SQL Server 2005 Query Notifications Tell .NET 2.0 Apps When Critical Data Changes

.NET 2.0 and SQL Server 2005 combine in Query Notifications to notify applications when critical data changes occur and eliminate the need to repeatedly ask the database, "Has it changed yet?"

Bulky Data Is No Problem Thanks to Compression/Decompression in .NET 2.0

If you never need to use compression for your applications, consider yourself lucky. For the rest of us, the good news is that .NET 2.0 has two new classes to handle compression and decompression streams. Find out when, and how, to use these valuable facilities.
2006-06-20 23:08:32   Source: Bulky Data Is No Problem Thanks to...   Tags: Examples

An Introduction to AJAX and Atlas with ASP.NET 2.0

Traditionally, web applications have left a lot to be desired from a user experience standpoint, due primarily to the "request/response" lifecycle. Any interaction with a page typically requires a postback to the web server (a "request"), which then performs any server-side tasks needed and returns the updated page's markup (the "response"). Outside of intranet-based applications, such behavior adds a bit of a lag when interacting with a page. One approach to improving the end user's experience is to use AJAX. AJAX is a technique for using JavaScript and the XMLHttpRequest object to make light-weight HTTP requests back to the web server from client-side script. Once a response is received, the web page's layout can be seamlessly refreshed using JavaScript to message the page's Document Object Model (DOM) and CSS settings. AJAX-enabled pages provide a slick, responsive user experience, making web-based applications function more like desktop-based ones.

In the past adding AJAX type behaviors to your web application was difficult and came with a steep learning curve since AJAX encompasses a bevy of technologies (JavaScript, XML, XmlHttpObject, HTTP requests, DHTML, and so on). With the advent of the ASP.NET Atlas framework, however, there is much less of a reason to feel so overwhelmed when it comes to AJAX!