.NET news » ASP.NET ASP.NET Rss Feed

ASP.NET & Comet: Bringing Sockets back

Implementing a socket based Comet solution in ASP.NET
9 Apr 2008, 04:26:00   Source: ASP.NET & Comet: Bringing Sockets back   Tags: ASP.NET

Never Write an Insecure ASP.NET Application Ever Again

Learn to take advantage of the inner workings of ASP.NET's security model to help eliminate security vulnerabilities from your web applications.
10 Mar 2008, 20:14:26   Source: Never Write an Insecure ASP.NET Application Ever Again   Tags: ASP.NET Security

Who's Online?: A Virtual Earth And User Session Mashup in Asp.Net.

A tutorial for implementing a modal popup window on your web site which will display a Microsoft Virtual Earth map with pinpoints on the locations of everyone who is currently browsing your web site.

Working Around ASP.NET's HyperLink ImageUrl Bug

This article shines the light on a bug I came across in the ASP.NET HyperLink control implementation. In particular, when using URL rewriting the HyperLink control's ImageUrl property can be, in certain circumstances, incorrectly rewritten. The good news is that there is a simple workaround that's made possible by the flexible architecture of ASP.NET.
29 Jan 2008, 18:00:00   Source: Working Around ASP.NET's HyperLink ImageUrl Bug   Tags: Bugs ASP.NET

Backup and Restore Session in .Net 2.0

This code backup your session in byte stream. It is useful when you swith the user or emulate the user and need to clear the current session. you can store this byte stream in newly created session as a session veriable and it is so simple to retrive the old session data from that byte stream. This is very useful when you are using SQL memebership provider and maintaining signin and signout using cookies.
25 Jan 2008, 08:48:00   Source: Backup and Restore Session in .Net 2.0   Tags: Examples ASP.NET

Caching Images in ASP.NET

There are a lot of ways to improve performance in web applications. One of the simplest but most effective methods is to cache images on the client. In this article I would like to show how we implemented image caching for our DotNetNuke website.
17 Jan 2008, 13:52:00   Source: Caching Images in ASP.NET   Tags: ASP.NET Performance

Never Write an Insecure ASP.NET Application Ever Again

One of the most important security principles for software development is least privilege. Simply put, least privilege means that an application, process, or user should have the least access to resources required to accomplish a task and no more. By following this principle, even if your application is attacked or a user goes on the payroll of your nastiest competitor, you'll have limited the potential damage. Bottom line: implementing partial trust in ASP.NET is the single biggest thing you can do to make your applications secure.
27 Dec 2007, 18:00:00   Source: Never Write an Insecure ASP.NET Application Ever Again   Tags: ASP.NET Security

An Overview of ASP.NET 3.5 and Visual Studio 2008

On November 19, 2007, Microsoft officially released the ASP.NET version 3.5 and Visual Studio 2008. Like with the progression from ASP.NET 2.0 to 3.0, the features in ASP.NET 3.5 are additive, meaning that the core assemblies installed from the .NET Framework version 2.0 are still used by the 3.0 and 3.5 versions. The In short, ASP.NET 3.5 doesn't change or take away or break any functionality, concepts, or code present in 2.0 - it simply adds new types and features and capabilities to the framework.

This article provides an overview of the new features in ASP.NET 3.5 and the new web/ASP.NET-related features in Visual Studio 2008.

20 Nov 2007, 18:00:00   Source: An Overview of ASP.NET 3.5 and Visual Studio 2008   Tags: ASP.NET Visual Studio

Microsoft ASP.NET AJAX: Using the UpdatePanel

Over the past several years web developers have started using JavaScript to make asynchronous postbacks to the web server that only transmit and receive the necessary data; these techniques are commonly referred to as AJAX. Microsoft has released a free AJAX framework for ASP.NET developers named Microsoft ASP.NET AJAX. This article series examines using Microsoft's ASP.NET AJAX framework to build responsive user interfaces.
24 Oct 2007, 00:00:00   Source: Microsoft ASP.NET AJAX: Using the UpdatePanel   Tags: Ajax ASP.NET

Building Interactive User Interfaces with Microsoft ASP.NET AJAX: Part 1

Since AJAX involves many disparate technologies at different layers in the networking stack, implementing AJAX without the use of an AJAX framework is difficult and error-prone. Fortunately, Microsoft has released a free AJAX framework for ASP.NET developers: Microsoft ASP.NET AJAX. This article is the first in a series of articles that examines the ASP.NET AJAX framework. This installment provides an overview of AJAX technologies and looks at getting started with Microsoft's framework. Future installments will focus on specific controls and scenarios..
10 Oct 2007, 00:00:00   Source: Building Interactive User Interfaces with Microsoft...   Tags: Ajax ASP.NET