VB.NET 2005 Tutorials: Using
Learn how to create and
The objective of this lab is
We are now at the next stage
the Data Form Wizard - In
execute stored procedures
to convert a simple JSP
of Active Server Pages
this tutorial you will learn
using .NET.
application into an ASP.NET
development. ASP.NET takes
about Using the Data Form
application using the Java
Active Server Pages and
Wizard - Building a
Language Conversion
rapid web application
Single-Table Data Form,
Assistant (JLCA). The JSP
development to a whole new
Transform and Filter Data,
application is a simplified
level. All of the benefits
Using Server Explorer,
e-commerce scenario,
provided by Active Server
Drag-and-Drop From Server
consisting of two JSP pages,
Pages to web development
Explorer, What the user Can
a Servlet, a tag library
have been expanded upon and
and Cannot Drag from Server
consisting of a single tag,
improved. Many of the
Explorer, Filtering Data,
and the SQL Server Pubs
inherent hurdles and
Filtering With DataViews,
database.
barriers that caused
Filtering At the Server,
struggles and difficulties
Transforming Data with
for web developers in
Lookups and Master Detail.
earlier versions of ASP have
been lowered or eliminated
altogether.
Date: Jul, 22 2005 Date: Nov, 15 2004 Date: Feb, 19 2004 Date: Mar, 11 2005 |
In this tutorial you will
Really Simple Syndication
Recently, I had a requirement
ASP.NET is built on a core
learn about Complex Data
(RSS) is an XML standard for
to put together a website
set of classes and
Binding, Binding to a
declaring content entries
that deals with taking
interfaces that abstract the
ComboBox or ListBox, Binding
for small content feeds. The
somewhat elaborate financial
HTTP protocol. The three
to a DataGrid. Complex data
RSS format has gained
surveys. While the
core abstractions are the
binding is the ability of a
popularity over the years
questions and answers
context (HttpContext) that
control to bind to more than
due to its simplicity. The
themselves are good
represents the current HTTP
one data element, typically
XML file formatted according
candidates for being
request, handlers (classes
more than one record in a
to the RSS specification is
database driven, there were
that implement IHttpHandler)
database, or to more than
either found as a physical
a large number of nuiances
that are capable of
one of any other type of
file or is obtained via a
ranging from UI items,
servicing HTTP requests, and
bindable data elements.
Web site that handles the
business rules, and
modules (classes that
request and sends the
calculations that just
implement IHttpModule) that
content over the Internet to
didn't fit into a database
can pre/post process HTTP
the client.
driven strategy. With this
requests to provide
in mind, my initial strategy
additional services.
was to create version
specific classes and
reference them in version
specific ASP.NET pages. Of
course, this accomplished
the initial requirement.
However, whenever a new
version needs to be
implemented, I had to copy
all of the ASP.NET pages and
modify the references to the
appropriate version specific
class name. Refactoring
provides a better
alternative and here's how:
Date: Jul, 22 2005 Date: Oct, 07 2006 Date: Oct, 15 2004 Date: May, 28 2003 |