.NET news » Search results

Search results for query "asp" (244):

A Simple Tutorial on Developing ASP.Net Applications in MVC Pattern

This article gives a simple tutorial on developing ASP.Net applications in MVC pattern.
2010-05-13 21:09:00   Source: A Simple Tutorial on Developing   Tags: ASP.NET

File Download in ASP.Net and Tracking the status of success/failure of Download

This article demonstrates how to provide download of a file in ASP.net along with tracking its success and failure. It will be useful especially in e-commerce system that offers downloadable product option. In e-commerce system it is very important to keep track of status of download.
2010-04-27 08:32:00   Source: File Download in ASP.Net and...   Tags: ASP.NET

ASP.NET AJAX MultiHandleSliderExtender - Slide by Year and Month

In this tutorial, I will demonstrate how to use MultiHandleSlider extender to choose or display year and month in a range. This control eliminates the need to use four DropDownlist controls to hold the range values and validation control for validating user selection. Then we will use the Column Chart to display number of cars on Sesame Street based on the selected range values.
2010-04-20 12:53:00   Source: ASP.NET AJAX...   Tags: Ajax

ASP.NET Application And Page Life Cycle

In this article we will try to understand what are the different events which takes place right from the time the user sends a request, until the time request is rendered on the browser. So we will first try to understand the two broader steps of an ASP.NET request and then we will move in to different events emitted from ‘HttpHandler’, ‘HttpModule’ and ASP.NET page object. As we move in this event journey we will try to understand what kind of logic should go in each every of these events.
2010-04-17 23:06:00   Source: ASP.NET Application And Page Life Cycle   Tags: ASP.NET

Exploring ASP.NET Validators

Validation is one of the most important part of any website. Nowadays, mostly new era websites are having very rich UI, and very much user friedly.User-friendly includes every thing, very good look n feel, excellent user friendly and well placed messages according to the different scenarios.

So here, I am going to discuss all the validators provided by the ASP.NET and for rich UI I'll also discuss in detail the calloutextendor that is part of latest AJAX Tool Kit.

2010-04-10 03:06:00   Source: Exploring ASP.NET Validators   Tags: ASP.NET Ajax

Data Web Controls Enhancements in ASP.NET 4.0

This article explores a number of enhancements made to the data Web controls in ASP.NET 4.0. As you'll see, most of these enhancements give the developer greater control over the rendered markup.

ASP.NET MVC and the Spark View Engine

Getting friendly with HTML in ASP.NET MVC just got a whole lot easier. In this article, I’ll delve into the Spark View Engine, an alternate view engine for the ASP.NET MVC Framework. Spark’s main goal is to allow HTML to dominate the flow of view development while allowing code to fit in seamlessly.

2010-02-18 18:00:00   Source: ASP.NET MVC and the Spark View Engine   Tags: ASP.NET

Removing Unnecessary HTTP Headers in IIS and ASP.NET

While certain HTTP Headers are necessary, the web server's identifying HTTP Headers are not necessary. Their inclusion inflates each HTTP response by around 100 bytes. Granted, 100 bytes is not much when taken alone, but when taken in the context of thousands or millions of requests over the course of time, those 100 bytes add up. Furthermore, providing identifying information can pose a security risk. An attacker who knows of a vulnerability in a particular web server and ASP.NET version combination could hunt for targets making HTTP requests to many different servers and flagging those that return the particular web server/ASP.NET version numbers.

This article looks at how to remove these identifying HTTP Headers in both IIS 6 and IIS 7.

Accessing Images On Flickr From An ASP.NET Website Using The Flickr.Net Library

This article explores the open source Flickr API library called Flickr.Net, which was created by Sam Judson and was used in my aforementioned project. Specifically, well look at how to create an ASP.NET website that displays a smattering of randomly selected pictures from a particular Flickr user, along with how to show a specific pictures comments (if any exist). And the complete code in both Visual Basic and C# is available for download at the end of this article.

Using Microsofts Chart Controls In An ASP.NET Application: Rendering the Chart

This article explores the three different techniques the Microsoft Chart Controls has at its disposal for generating chart images. Well look at how to use each option, enumerate the pros and cons, and discuss when to consider using one option over another.