Close access to ASP. Net (3)

Source: Internet
Author: User

Sorry, I haven't written an article for a long time. The main reason is that some time ago I took the exam and was so busy that I turned out to be confused. Now I have to mention the pen again (Note: no pen, when I got home, I didn't even have a computer. I only had to spend some time in Internet cafes ). However, since I have no computer at home, my articles can only be written intermittently. Please forgive me.
Recently, a friend asked me where I could learn ASP + well. I have said that the documents in NGWS are the best learning manuals, but due to the high requirements of NGWS, there is also the problem of its size (110 M), there are some brothers, can not install it, I give you a site http://www.aspnextgen.com/quickstart/aspplus/, the above document is NGWS direct belt, in addition, this site is all built by asp +. You can directly see the implementation of aspx. The only thing that I am not satisfied with is that aspx cannot be executed, you cannot see the execution result of the routine.
Now let's talk a little bit about it. Let's take a look at how to use the controls in asp +.
Controls in ASP + are divided into HTML controls and WEBControls controls. This section describes simple HTML controls. Another control is left in the next section :)
HTML controls. If you only look at the appearance, you can see that they are no different from common HTML tags, but they are <select> <a>, the only difference is that there is a RunAt = "server" behind the tag. In fact, we are no stranger to this RunAt = "Server. we often see asa files. However, if this is added to asp +, the nature of the program code will change. For example:
<Select id = "aspcn">
<Option> ASP </option>
<Option> JSP </option>
<Option> PHP </option>
</Select>
<Select id = "aspcn">
<Option> ASP </option>
<Option> JSP </option>
<Option> PHP </option>
</Select>
The preceding select statement is just a common HTML tag, but if RunAt = "server" is added after the select statement, everything changes.

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.