In the HTML language, angle brackets are used to mark a tag. In the ASP language, there is actually no difference. The only difference is that <% %> is used to indicate the beginning and end of an ASP script language. ASP code can appear anywhere on an HTML page. Specifically, a piece of ASP code can appear in front of an HTML tag or inside a tag. In summary, ASP and HTML are tightly nested within each other.
ASP allows us to write very little code to operate database data. In addition, through ASP technology, our static HTML pages can dynamically reflect the latest data information of the database.
VBScript is the default language for ASP scripts. If you want to use another language, then you need to specify it.
The method is to add a line< %@LANGUAGE=ScriptingLanguage% >
at the top of your ASP code
. VBScriptis is a very easy language to learn. Once you start using VBScriptis to develop, you will find it more and more useful. The syntax and logic are very easy to learn.