Click here to Skip to main content
15,885,244 members
Articles / Web Development / ASP.NET

ASP.NET tutorial using Dreamweaver MX

Rate me:
Please Sign up or sign in to vote.
4.78/5 (26 votes)
28 Nov 200216 min read 422.9K   6.1K   135  
An article demonstrating the use of Dreamweaver MX to create a simple ASP.NET application.
Declare these values at the top of the page:

<%@ Register TagPrefix="DotNetNews" TagName="Header" Src="../controls/top.ascx" %>
<%@ Register TagPrefix="DotNetNews" TagName="Footer" Src="../controls/bottom.ascx" %>
<%@ Register TagPrefix="DotNetNews" TagName="Menu" Src="../controls/menu_left.ascx" %>
<%@ Register TagPrefix="DotNetNews" TagName="Security" Src="../controls/security.ascx" %>

Insert these tages where you want the control.

<DotNetNews:Security ID="Security1" runat="server" />

<DotNetNews:Header ID="Header1" runat="server" />

<DotNetNews:Menu ID="Menu1" runat="server" />

<DotNetNews:Footer ID="Footer1" runat="server" />

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer WWWeb Concepts
United States United States
James W. Threadgill began his education with community college computer science certification program. He continued to the University of Houston-Clear Lake where he earned a Bachelor of Science and a Master of Arts. His first paying jobs as a web developer took place were during his first year of graduate school in 1998. He soon established WWWeb Concepts a web design and development firm located in Houston Texas that he still owns and operates today.

He has authored tutorials on web development for the Microsoft Developer Network Academic Alliance, Code Project and the Dynamic Zones. He co-authored the Glasshaus book Dreamweaver MX: ASP.NET Web Development released by Wrox Press February 2003.

Repository: https://github.com/wwwebconcepts
This is a Organisation

1 members

Comments and Discussions