Article Trunk



Posts Tagged ‘ASP.NET Training’

Using HTML Server Controls And Web Server Controls In Microsoft ASP.NET

09.13.2009 · Posted in Computer Articles

There are two types of server control in ASP.NET: HTML server controls and Web server controls. HTML server controls are simply regular web elements into which the runat="server" attribute has been added and which have been assigned an ID. The runat="server" attribute tells the ASP.NET engine that the control can respond to events and enables ...

Why You Should Be Using Master Pages in ASP.NET

09.13.2009 · Posted in Internet Articles

ASP.NET master pages are a powerful feature which allows developers to create template-like pages which contain information that is common to all pages in a site or all pages in one section of a site such as corporate logo, company information, headers, footers and navigation links. Content pages can then be created which are based ...

Getting To Know ASP.Net 3.5 DataBound Controls

08.28.2009 · Posted in Internet Articles

In ASP.NET version 1, the main control for displaying databound content on a web page was the DataGrid. In the current release of ASP.NET, version 3.5, the DataGrid is conspicuously absent from the Toolbox in Visual Web Developer. In fact, although the DataGrid can still be used in ASP.NET pages and will work fine, it ...