Καλώς ορίσατε στο dotNETZone.gr - Σύνδεση | Εγγραφή | Βοήθεια

Dot Net Rules

Yes, to dance beneath the diamond sky with one hand waving free

Ιστορικό Δημοσιεύσεων

Σεπτέμβριος 2011 - Δημοσιεύσεις

Creating custom error pages in ASP.Net applications
This is going to be another short post regarding ASP.Net and custom error pages. Our goal is to specify a particular page to be displayed on the user's screen when error occurs within our application.In order to that we basically have to make some changes...(read more)
Take an ASP.Net application offline
In this post (it is going to be very short for a change) I would like to show you how to take your ASP.Net application offline. We have to place a file named app_offline.htm into your root directory.By doing that we stop any ASP.Net processing. If you...(read more)
An introduction to ASP.Net health monitoring and web events
In this post I would to focus on ASP.Net Health monitoring and Web events.Health monitoring is another mechanism to capture/abstract logging. In most cases with our ASP.Net applications we need to trace what happens when they are up and running. Have...(read more)
Using JQuery Ajax functions to retrieve data from the server
In this post I would like to talk about the great support that JQuery has for Ajax.I have already written another post on my blog regarding the Jquery Ajax functions and how we can get data form the server.In that post we looked into how we can use the...(read more)
Creating simple and complex animations with JQuery in ASP.Net applications
This another post that is focusing on how to use JQuery in our ASP.Net applications. If you want to have a look at the other posts related to JQuery in my blog click here We always wanted to have eye-candy web applications and since the first web pages...(read more)
Using the AutoCompleteExtender control in an Ajax ASP.Net application
In this post I will talk about Ajax again.This time we will use an extender to ajaxify our application.I am going to use the AutoCompleteExtender extender together with a textbox. Inside the extender control I will call a web service (a service method...(read more)
Investigating Ajax history in ASP.Net applications
In this post I would like to talk about Ajax history in ASP.Net applications and how it works.The problem with ASP.Net Ajax applications is that the browser's back and forward buttons do not store the history of the page. The browser recognises only URLs...(read more)
Importing html from the server using JQuery Ajax functions
In this post I would like to talk about the various Ajax features-functions available to us when incorporating JQuery into our applications.We are going to investigate how we can use those JQuery Ajax functions to get data from the server. This post will...(read more)