.NET news » ASP.NET 
Google Maps Control for ASP.Net - Part 1
Google has provided a very reach Google Maps API to use it in our own application. But we need some short of javascript knowledge in order to use it. I don't know about others, but for me it was a little difficult to use javascript along with google apis in ASP.Net pages, specifically if you want to use server side functions to draw google map dynamically. For example, in my case I wanted to pull latitude longitude information from a SQL Server database and then use them to insert pushpins on google map. If you are familiar with Ajax framework, you know the answer. You will have to call asp.net server side function from javascript and use retrieved data to draw a google map. How simple is that? :). Atleast not for me. So I have decided to write a user control which can take care of javascript part and allows me to concentrate on serverside functions.
ASP.NET Page Life Cycle
This article describes the life cycle of the page from the moment the URL is hit from the web browser till the HTML code is generated and sent to the web browser.
Building ASP.NET Web Pages Dynamically in the Code-Behind
The purpose of this article is to introduce you to the idea of building your data-driven web pages dynamically in the code behind. I will get you started on building a class library of your own to make this technique more efficient. I will show you how to build out pages dynamically. Finally, I will explain both the benefits and disadvantages..
25 Apr 2008, 16:15:00 Source: Building ASP.NET Web Pages Dynamically in the Code-Behind
Tags: ASP.NET
Multiple File Upload User Control
This article describes how to create a user control with event & properties.
ASP.NET & Comet: Bringing Sockets back
Implementing a socket based Comet solution in 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.
28 Feb 2008, 14:12:00 Source: Who's Online?: A Virtual Earth And User Session Mashup in...
Tags: ASP.NET
Ajax
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.
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.
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.


