.NET news » Search results

Search results for query "asp" (244):

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

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!

Work Web Part Magic Inside of ASP.NET

SharePoint users have known how useful Web parts are for a long time, but it wasn't until recently that every .NET developer had access to the ease and grace of Web parts using ASP.NET 2.0. Find out how you can use these handy content containers to create Web sites that put routine content sharing capabilities into the hands of your end users.
2006-06-16 16:55:52   Source: Work Web Part Magic Inside of ASP.NET   Tags: ASP.NET

Creating a Step-by-Step User Interface with the ASP.NET 2.0 Wizard Control: The Basics

The wizard - a standard user interface element in desktop applications - takes the user through a series of discrete steps in order to accomplish some task. A wizard step typically includes instructions, input controls, and an interface for moving between the wizard's steps (typically Next and Previous buttons, with a Finish button at the last step). Furthermore, wizards often include different steps depending on the inputs chosen in previous steps.

Wizards have typically been the domain of desktop applications, but have recently become more prevalent in web applications. In ASP.NET 1.x, developers who wanted to implement a wizard-like user interface would often use multiple Panel Web controls, one for each Wizard step. As they user progressed through the wizard by hitting the Next and Previous buttons, the appropriate Panel could be displayed (have its Visible property set to True), while the others hidden (have their Visible properties set to False).

ASP.NET 2.0 makes creating wizard interfaces a lot less work thanks to its new Wizard control. With the Wizard control, we can define a series of Wizard steps and specify the content - static HTML and Web controls - that belongs in each step along with the function of the step, whether it's the first step, one step in the series of steps, the final step, or a summary step to appear after the wizard has completed. The Wizard control automatically includes the appropriate navigation elements for each step, remembers the values entered into the Web controls in each step, and includes a rich event model from which programmatic logic can be added to perform the desired task upon finishing the wizard (among other tasks)..

Introducing ASP.NET 2.0 Web Parts

Web Parts is the brand new feature in ASP.NET 2.0. This feature supports personalized content and layout of a web page. This new feature or rather controls allows the user Change, Edit, Move the content of the web page as per their choices.
2006-06-13 14:25:26   Source: Introducing ASP.NET 2.0 Web Parts   Tags: ASP.NET

Support Mobile Devices in ASP.NET (Advances Topics)

Explains how to customize ASP.NET pages on different mobile device types, how to support CSS and how to make user friendly ASP.NET mobile sites.
2006-05-15 12:43:14   Source: Support Mobile Devices in ASP.NET...   Tags: Mobile ASP.NET

How to make ASP.NET Applications that support mobile devices

Explains how to make ASP.NET mobile applications by using ASP.NET Mobile Software Development kit (Mobile SDK).
2006-05-01 10:51:17   Source: How to make ASP.NET Applications...   Tags: ASP.NET Mobile

How to Display ASP.NET DataGrid Data in Excel

This tip shares code that allows you to display ASP.NET DataGrid data in Excel.
2006-04-17 22:57:40   Source: How to Display ASP.NET DataGrid Data...   Tags: ASP.NET