Layer-3 Structure

Source: Internet
Author: User

"Three-layer structure" is "appearance layer", "business logic layer", and "database layer"
Suppose you want to create a message board in this structure:
# The appearance code of the message board page is stored in the. aspx file.
# When a user clicks the submit button on the page, the text information is first transmitted to a LeaveWord Class Object
(The LeaveWord class definition is encapsulated into the "business logic layer ")
# Then let this object execute Post () to send the message to the database
A simple code is:
<Textarea id = "Content" runat = "server"> </textarea>
<Input type = "button" id = "Post" runat = "server"/>
//----------------------------------------
// On the appearance layer, after the user clicks the send button
//----------------------------------------
Private void Post_ServerClick (object sender, EventArgs e)
{
LeaveWord lword = new LeaveWord ();
Lword. Content = Content. Value;
Lword. Post ();
}
//----------------------------------------
// Define the LeaveWord class at the business logic layer
//----------------------------------------
Public class LeaveWord
{
Public string Content;

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.