Master Pages Control ID Naming in Content Pages Introduction

Master Pages  Control ID Naming in Content Pages IntroductionAll ASP.NET server controls include an ID property that uniquely identifies the control and is the means by which the control is programmatically accessed in the code-behind class. Similarly, the elements in an HTML document may include an id attribute that uniquely identifies the element; these id values are often used in client-side script to programmatically reference a particular HTML element. Given this, you may assume that when an ASP.NET server control is rendered into HTML, its ID value is used as the id value of the rendered HTML element. This is not necessarily the case because in certain circumstances a single control with a single ID value may appear multiple times in the rendered markup. Consider a GridView control that includes a TemplateField with a Label Web control with an ID value of ProductName. When the GridView is bound to its data source at runtime, this Label is repeated once for every GridView row. Each rendered Label needs a unique id value.
Read more

Working with Data in ASP.NET 2.0 Handling BLL and DAL Level Exceptions in an ASP.NET Page

Working with Data in ASP.NET 2.0  Handling BLL and DAL Level Exceptions in an ASP.NET PageWorking with data from an ASP.NET web application using a tiered application architecture involves the following three general steps:
1. Determine what method of the Business Logic Layer needs to be invoked and what parameter values to pass it. The parameter values can be hard coded, programmatically assigned, or inputs entered by the user.
2. Invoke the method.
3. Process the results. When calling a BLL method that returns data, this may involve binding the data to a data Web control. For BLL methods that modify data, this may include performing some action based on a return value or gracefully handling any exception that arose in Step 2.
Read more

Working with Data in ASP.NET 2.0 Nested Data Web Controls

Working with Data in ASP.NET 2.0  Nested Data Web ControlsIn addition to static HTML and databinding syntax, templates can also include Web controls and User Controls. These Web controls can have their properties assigned via declarative, databinding syntax, or can be accessed programmatically in the appropriate serverside event handlers.
Read more

Getting Started with Macromedia ColdFusion MX Tutorial for HTML Developers

Getting Started with Macromedia ColdFusion MX Tutorial for HTML DevelopersThis tutorial is designed for visual page designers who would like to take the next step to making dynamic web applications using Macromedia Dreamweaver MX and Macromedia ColdFusion MX.
This tutorial lays the foundation for creating dynamic web applications. Using these tutorials, you will not only create dynamic sections for a company intranet, but also learn how easy it is to get started and why dynamic applications will help you build better applications, faster. Once you are comfortable building dynamic applications, you will have fewer pages to edit, update and maintain. You’ll also be able to provide more accurate information to the users of your web applications.
Read more

Steps for Building Dynamic Pages

Steps for Building Dynamic PagesThis document outlines step-by-step directions for building a dynamic Macromedia ColdFusion MX 7 database-driven web page that pulls data from multiple database tables and references images stored on the server.
The steps for this tutorial are:
STEP 1: Setting Up the Development Environment
STEP 2: Setting Up Dreamweaver MX 2004
STEP 3: Starting With Static HTML, and Reviewing the Database Data
STEP 4: Connecting the Database to ColdFusion
STEP 5: Learning Some Structured Query Language (SQL) Statements
STEP 6: Writing ColdFusion Code
STEP 7: Optimizing the Code with ColdFusion Components (CFCs)
The page you build in this tutorial displays artwork by various artists.
Read more

Next Page →