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

Google Maps Control for ASP.NET - Part 2

This is second part in two part series of my article Google Maps User Control for ASP.Net. In the first part I have explained how to use this control in your ASP.Net application. In this part, I am going to explain source code of this user control so that you can modify it for your own use.
4 Jun 2008, 13:26:00   Source: Google Maps Control for ASP.NET - Part 2   Tags: ASP.NET Ajax

DropDownList with OptionGroup

ASP.NET DropDownList render custom control with OptionGroup feature.
4 Jun 2008, 07:21:00   Source: DropDownList with OptionGroup   Tags: ASP.NET

ASP.NET Internals: Viewstate and Page Life Cycle

Discusses asp.net viewstate and page life cycle in depth
25 May 2008, 00:57:00   Source: ASP.NET Internals: Viewstate and Page Life Cycle   Tags: ASP.NET

A Chat with ASP.NET and Ajax

This article describes how to implement a web-chat with ASP.NET and Ajax. In the first part I introduce the technologies I used for the application. Then I explain the concept of a chat and in the last part I present the main implementations. The goal of this article is to show the interested reader how to develop a chat without browser-plugins or java-applets, just pure HTML and JavaScript.
22 May 2008, 14:10:00   Source: A Chat with ASP.NET and Ajax   Tags: ASP.NET Ajax

Accessing and Updating Data in ASP.NET 2.0: Using Optimistic Concurrency

Because multiple users can visit the same web page concurrently, it is possible for a user visiting a data modification page to inadvertently overwrite the modifications made by another user. Consider a page with an editable GridView. If two users visit this page simultaneously from different computers and both edit the same row, whomever saves the first will have her changes overwritten by whomever saves the row last. This type of behavior is known as "last write wins" and is the default behavior for web applications..

20 May 2008, 19:00:00   Source: Accessing and Updating Data in ASP.NET 2.0: Using...   Tags: ASP.NET

.NET Role-Based Security in a Production Environment

Edit web.config to Update the Data Provider for Shared Hosting with Role-Based Security: SQL Server, ODBC, Active Directory, ADAM, SQLite, MySQL, Access, XML
19 May 2008, 05:04:00   Source: .NET Role-Based Security in a Production Environment   Tags: ASP.NET Security

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.
12 May 2008, 23:45:00   Source: Google Maps Control for ASP.Net - Part 1   Tags: ASP.NET Ajax

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.
25 Apr 2008, 17:37:00   Source: ASP.NET Page Life Cycle   Tags: ASP.NET

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.
22 Apr 2008, 09:37:00   Source: Multiple File Upload User Control   Tags: ASP.NET