.NET news » Search results

Search results for query "asp" (244):

Matematico Web Game in ASP.NET using RegEx

This article is about Matematico, a logical game I played when I was 11 years old. I never forgot this game and my teacher who was a very clever woman. Now, my daughter Nina is able to play with me and I create this page for her just for fun. And for you, of course. You can play this game with your children, parents, and friends. IMHO this game is better than bingo, and poker.
2008-07-02 12:52:00   Source: Matematico Web Game in ASP.NET using...   Tags: Examples ASP.NET

Eight Key Practices for ASP.NET Deployment

This article presents some best practices that you can follow to deploy ASP.NET applications in production mode. These practices help you avoid problems both during and after deployment.
2008-06-27 19:40:06   Source: Eight Key Practices for ASP.NET...   Tags: ASP.NET

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.
2008-06-04 13:26:00   Source: Google Maps Control for ASP.NET -...   Tags: ASP.NET Ajax

ASP.NET Internals: Viewstate and Page Life Cycle

Discusses asp.net viewstate and page life cycle in depth
2008-05-25 00:57:00   Source: ASP.NET Internals: Viewstate and...   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.
2008-05-22 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..

2008-05-20 19:00:00   Source: Accessing and Updating Data in   Tags: 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.
2008-05-12 23:45:00   Source: Google Maps Control for ASP.Net -...   Tags: ASP.NET Ajax

ASP.NET AJAX: Providing Visual Feedback with the UpdateProgress Control

Microsoft's ASP.NET AJAX Framework helps page developers design more interactive web pages by streamlining the postback mechanism. In traditional web pages, a full postback involves the browser re-requesting the page, which is then re-rendered. This re-rendered page markup is returned, in its entirety, to the browser for display. Ajax techniques improve the user's experience in two primary ways through the use of partial postbacks: first, a partial postback is asynchronous, meaning that the user can still interact with the page while waiting for the partial postback to complete; second, and more importantly, because a partial page postback updates only a particular region (or regions) of a page, less data needs to be shuttled between the client and the server, resulting in a quicker and smoother experience..

2008-05-06 19:00:00   Source: ASP.NET AJAX: Providing Visual...   Tags: 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.
2008-04-25 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..
2008-04-25 16:15:00   Source: Building ASP.NET Web Pages...   Tags: ASP.NET