More often, the data to shown in an AJAX page is retrieved from the Web server using a Web service, a Windows Communication Foundation (WCF) service. The services that can also return JavaScriptObjectNotation(JSON) are potential candidates for AJAX pages. This post explains about calling a WCF service using ASP.NET AJAX Library Data View control. The following are the steps to create and call the...
Master-Detail Views using ASP.NET AJAX
Master-Detail Views are very common in data-driven Web pages. These views are used for rendering one-to-many relationships. ASP.NET Web forms provided the strong server controls like grids,lists and drop-down lists which supports the multiple levels of data. In Master-Detail View we normally navigate among master records and drill down into the details of the records that are of interest. In...
ASP.NET AJAX Library Beta in Visual Studio
Overview The ASP.NET AJAX Library is a JavaScript library which enables the developer to build highly interactive Ajax applications. Using ASP.NET Ajax client controls we can take the advantage of building database-driven web applications. This post explains how to add these controls to Visual Studio toolbox and explore the beta features. The ASP.NET AJAX Library is compatible with Visual Studio...
CRUD operations using ASP.NET MVC 1
This post explains how to write ASP.NET MVC application which supports create, read, update and delete operations on sample database table. We build a product catalogue application using ASP.NET MVC Web application template. Download ASP.NET MVC 1 to create the following application To get the overview on ASP.NET MVC you can read ASP.NET 3.5 MVC Application post 1. Create a ASP.NET MVC Web...
Web Forms model in ASP.NET 4.0
ASP.NET 4.0 platform is built up with various components Web Forms,ASP.NET MVC, Dynamic Data Controls and ASP.NET AJAX. It has the same foundation as in ASP.NET 3.5 SP1 but refined the above features. This post speaks about features in the Web Form model.
ASP.NET MVC and Web Forms
This post explores the pros and cons of both ASP.NET Forms and ASP.NET MVC and also discusses why Microsoft released another ASP.NET Framework called ASP.NET MVC. There has been a discussion on choosing the framework for developing the web applications. The following comparisons will help the developers when to choose one or the other. Benefits of ASP.NET Web Forms ASP.NET Web Forms is...
Visual Studio 2010 Designer Improvements
The Web Developer Designer in VS 2010 has been enhanced for greater CSS compatibility, includes support for HTML and ASP.NET markup snippets. Improved CSS compatibility The Developer designer in VS 2010 has been updated to improve CSS 2.1 standards compliance. HTML and JScript Snippets In the HTML editor, IntelliSense auto-completes tag names. VS 2010 includes over 200 snippets that help...
ASP.NET Application Deployment in VS 2010
ASP.NET Developers often find the following difficulties in deploying the applications • You may require an FTP to transfer your application to shared hosting site. You must also need to perform tasks such as running SQL scripts to configure a database and changing IIS settings such as configuring a virtual directory folder for application...
Hosting ASP.NET sites on IIS 7.0
IIS 7.0 provides the ASP.NET Integration by default, It supports both the new and old integration modes that can be used side by side on the same server. On IIS 7.0 you can run multiple ASP.NET version applications using integration and classic modes .
Client IDs in ASP.NET 4.0
This post explains about setting the client ids in ASP.NET 4.0. Knowing the id attribute of the control rendered on page is a long-standing issue. It is important to know the id if we want to use it in script libraries. The new property ClientIdMode Addresses this issue...