ASP.NET News from Blogger:
ASP.NET Daily Articles
Total News: 568
This chapter explains how to display video in an ASP.NET Web Pages with Razor syntax page....
This chapter describes how to access data from a database and display it using ASP.NET Web Pages....
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......
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....
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....
This appendix gives you an overview of programming with ASP.NET Web pages in Visual Basic, using the Razor syntax....
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......
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......
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......
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......
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......
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......
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......
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......
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......
The article describes the concept and implementation of a web chat created with ASP.NET and AJAX....
Tutorial introduces a number of new Web controls designed for accessing and modifying data in ASP.NET 2.0....
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 ...
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...
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....
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 ...
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...
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...
Explains how to use Client Callback feature to retrieve page values without using of postback and reconstructing complete web page....
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....
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....
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...
In this article Kazi Manzur Rashid provides an in-depth guide to developing AJAX Controls with the ASP.NET AJAX Framework....
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 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...
Covers different ways to display collection of items in form of bulleted list with new Bulleted List Server Control....
Explains how to build ProgressBar user control with ASP.NET. Includes source code of control and example VS.NET 2005 project....
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...
Explains how to store to database and get back binary data, like images, .pdf or .zip files....
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....
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....
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...
In this part of the series I will explain the DataContext class in depth through a series of examples and explanations....
Build your own "Drudge Report" using ASP.NET 2.0, RSS and a DataList....
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...
An introductory LINQ article describing the new language features of LINQ...
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...
Shows how to perform high-speed ASP.NET Request logging to a database using the asynchronous Fire and Forget delegate wrapper patterns....
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...
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...
Explains how to edit configuration files (Web.config) programmatically using Configuration API's, Web Site Administration Tool and Web Site Snap-in....
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...
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....
Explains how to use XMLDataSource Control to access and display XML Data Source (e.g. local xml file, or RSS feeds)....
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