ASP.NET News from Blogger: ASP.NET Daily Articles   Get the feed of: ASP.NET Daily Articles

Total News: 568

Working with Video

This chapter explains how to display video in an ASP.NET Web Pages with Razor syntax page....

Working with Data

This chapter describes how to access data from a database and display it using ASP.NET Web Pages....

Working with Forms

A form is a section of an HTML document where you put user-input controls, like text boxes, check boxes, radio buttons, and pull-down lists. You use forms when you want to collect and process user......

Program ASP.NET Web Pages in Visual Studio

This appendix explains how you can use Visual Studio 2010 or Visual Web Developer 2010 Express to program ASP.NET Web Pages with the Razor syntax....

Intro to ASP.NET Web Programming Razor Syntax

This chapter gives you an overview of programming with ASP.NET Web Pages using the Razor syntax. ASP.NET is Microsoft's technology for running dynamic web pages on web servers....

ASP.NET Web Pages Visual Basic

This appendix gives you an overview of programming with ASP.NET Web pages in Visual Basic, using the Razor syntax....

Introducing ASP.NET Web Pages 2 - Getting Started

This set of tutorials gives you an overview of ASP.NET Web Pages (version 2) and Razor syntax, a lightweight framework for creating dynamic websites. It also introduces WebMatrix, a tool for creati......

Adding a New Field to the Movie Model and Table

In this section you'll make some changes to the model classes and learn how you can update the database schema to match the model changes. Adding a Rating Property to the Movie Model Start by addin......

Examining the Edit Methods and Edit View

In this section, you'll examine the generated action methods and views for the movie controller. Then you'll add a custom search page. Run the application and browse to the Movies controller by app......

Accessing Your Model's Data from a Controller

In this section, you'll create a new MoviesController class and write code that retrieves the movie data and displays it in the browser using a view template. Build the application before going on......

Adding a Model

In this section you'll add some classes for managing movies in a database. These classes will be the "model" part of the ASP.NET MVC application. Youll use a .NET Framework data-access technology......

Adding a View

In this section you're going to modify the HelloWorldController class to use view template files to cleanly encapsulate the process of generating HTML responses to a client. You'll create a view te......

Adding a Controller

MVC stands for model-view-controller. MVC is a pattern for developing applications that are well architected, testable and easy to maintain. MVC-based applications contain: Models: Classes that rep......

Intro to ASP.NET MVC 4 with Visual Studio 2011

This tutorial will teach you the basics of building an ASP.NET MVC Web application using Microsoft Visual Studio 11 Express Beta for Web, which is a free version of Microsoft Visual Studio. Before......

Using Page Inspector in an MVC Application in Visual Studio 11 Beta

Page Inspector brings browser diagnostics tools into the Visual Studio 11 web development environment. Its Inspection Mode provides instantaneous visual mapping between the browser, Source view, an......

A Chat with ASP.NET and AJAX

The article describes the concept and implementation of a web chat created with ASP.NET and AJAX....

Data Source Controls in ASP.NET 2.0

Tutorial introduces a number of new Web controls designed for accessing and modifying data in ASP.NET 2.0....

Adding Additional DataTable Columns

When using the TableAdapter Wizard to create a Typed DataSet, the corresponding DataTable contains the columns returned by the main database query. But there are occasions when the DataTable needs to ...

Using UpdatePanel Inside Templated Controls

ASP.NET AJAX provides many ways to improve user experience and performance. One of the most common way is undoubtedly the UpdatePanel control. The UpdatePanel control provides partial page rendering c...

Using Existing Stored Procedures for the Typed DataSets TableAdapters

In this tutorial we learn how the same TableAdapter Wizard can work with existing stored procedures. We also learn how to manually add new stored procedures to our database....

Creating New Stored Procedures for the Typed DataSets TableAdapters

In earlier tutorials we have created SQL statements in our code and passed the statements to the database to be executed. An alternative approach is to use stored procedures, where the SQL statements ...

Improving Performance using ODS Custom Paging

Displaying database records in paged fashion is a common requirement in web applications. ASP.NET 2.0 controls such as GridView and DetailsView have inbuilt paging capabilities. Many developers rely o...

Fire and Forget Fun: RPC Pings, GET, POST and more

Shows how to use the Asynchronous Fire and Forget pattern to ping RPC Servers about changes in your site, ping the Yahoo crawler API with a RESTful GET, and perform a Fire and Forget FORM POST. Most o...

Client Side Callbacks in ASP.NET 2.0

Explains how to use Client Callback feature to retrieve page values without using of postback and reconstructing complete web page....

Load user data once with an HttpModule

Instead of creating a new object with user data every time you need it, go back to the well and avoid having to write caching code....

Webservice ASP.NET with GridView and DataGridView

In this article I explain how you can implement a WebService with C# and use this in two different type of technologies: In a WebForm for a GridView and in a WinForm for a DataGridView....

Pagination In SQL Server 2005

If you've used other flavors of SQL (such as MySQL or PostgreSQL) and now you have switched over to TSQL (Microsoft SQL Server) you may have noticed that there is no native way of doing pagination. In...

ASP.NET AJAX Control Development

In this article Kazi Manzur Rashid provides an in-depth guide to developing AJAX Controls with the ASP.NET AJAX Framework....

Consuming Web Services With ASP.NET AJAX

One of the most powerful features of ASP.NET AJAX is often times one of the most overlooked uses - consuming web services. Many ASP.NET developers are beginning to implement AJAX into their site by th...

ASP.NET Profiles Purely With AJAX

ASP.NET 2.0 brought a lot to the table with the Membership and Profiles API. Now with ASP.NET AJAX, you can fully work with these right there in your client script. This article will show you how easy...

Bulleted List Server Control in ASP.NET 2.0

Covers different ways to display collection of items in form of bulleted list with new Bulleted List Server Control....

How to create ProgressBar user control

Explains how to build ProgressBar user control with ASP.NET. Includes source code of control and example VS.NET 2005 project....

Auto-Completion Using ASP.NET Client Callbacks

Auto-Completion is a very interesting feature which was primarily made popular by Google. I have already written a couple of articles which explain how to implement this feature. In this article I wil...

Storing Binary Data to Database using ASP.NET 2.0

Explains how to store to database and get back binary data, like images, .pdf or .zip files....

Membership Using ASP.NET AJAX

This article demonstrates how to perform membership functionality (authentication) with ASP.NET AJAX. Attached is the full source, including a sample database to keep the login information....

Expose Stored Procedures to ASP.NET through HTTP Endpoints

How to use HTTP endpoints of SQL Server 2005 to publish internal reports to your organization without using IIS Web Server and regardless of heterogeneous systems....

Forms Auth: Membership, Roles and Profile with no Providers and no Session

Shows how to use plain-old Forms Authentication with a single database table and compressed userData in the forms ticket to handle simplified Membership, Roles and Profile with no providers and no nee...

Introducing LINQ Part 5

In this part of the series I will explain the DataContext class in depth through a series of examples and explanations....

Roll Your own Drudge Report in ASP.NET

Build your own "Drudge Report" using ASP.NET 2.0, RSS and a DataList....

Performing Batch Inserts to the Database

Learn how to insert multiple database records in a single operation. In the User Interface Layer we extend the GridView to allow the user to enter multiple new records. In the Data Access Layer we wra...

Understanding LINQ (C#)

An introductory LINQ article describing the new language features of LINQ...

Performing Batch Deletes from the Database

Learn how to delete multiple database records in a single operation. In the User Interface Layer we build upon an enhanced GridView created in an earlier tutorial. In the Data Access Layer we wrap the...

ASP.NET Request Logging with Asynchronous Fire And Forget Pattern

Shows how to perform high-speed ASP.NET Request logging to a database using the asynchronous Fire and Forget delegate wrapper patterns....

Dynamically Created Controls in ASP.NET

I spent some time before I found a pattern to work with dynamically created controls in ASP.NET that satisfied my requirements. I tried multiple approaches and faced multiple problems. If you'd like t...

Refreshing ASP.NET Cached Data on a timed basis to avoid delays

Shows how to refresh a datasource on a timed basis with a background timer thread, cache the data, and not have to worry about any delays due to the refreshing of the particular datasource usually tak...

ASP.NET Configuration System

Explains how to edit configuration files (Web.config) programmatically using Configuration API's, Web Site Administration Tool and Web Site Snap-in....

Creating Master Detail Pages using GridView

ASP.NET 2.0 introduced GridView control supersedes the older DataGrid control and adds many enhancements. In this article I am going to show how master detail pages can be developed using GridView con...

Tips and Tricks: ASP.NET AJAX 1.0 and User Controls

In this article Bilal Haidar will explore with you the different ways in which you can integrate ASP.NET AJAX 1.0 UpdatePanels into your Web application that makes extensive use of UserControls....

XmlDataSource Control

Explains how to use XMLDataSource Control to access and display XML Data Source (e.g. local xml file, or RSS feeds)....

Getting Started: Creating a WSE 3.0 Enabled Web Service to Transfer Large Amount of Data using WSE 3.0 MTOM

In this article we will see how to create a WSE 3.0 enabled web service to transfer large amount of data using SOAP Message Transmission Optimization Mechanism a.k.a MTOM...

View Other bloggers