Template Tags The code generator processes the following template tags inside the templates to generate the working codes, intermediate or advanced users can make use of these tags to create custom templates. These tags are case-insensitive. All template tags have the same basic syntax: Syntax:
Due to the HTML comment style format, these script blocks will be treated as HTML comments in any editors. Therefore, you can use your favorite editor to edit the template provided that these special tags are kept in place. It is important to understand how templates tags works. During code generation, the code generator reads the template file, executes the scripts in the template tags, and finally, write the codes to the output file. There are 6 types of template tags, the last 3 are just special cases of the 3rd type (function block). So it is very easy to use and learn.
1. Session Tags Syntax:
Note that:
The code generator locates the source of a output file according to the sequence of sessions specified in the control.xml of the template. Each session tag carries a session name that identifies the lines of code that will be extracted.
To generate codes according to the project settings, there are many script blocks in each session. Each script block is enclosed by special start and end tags. Syntax:
The scripting language used in the script block is VBScript provided by Windows Script.
In a script block, you can create variables and constants, use conditional statements, do looping, write procedures, etc. You can also access all settings in the project within the script block. (See Template Object Properties for details.) With script blocks, you can generate virtually any codes you want. Example <!--##If TABLE.TblType = "VIEW" Then##--> In this example the codes in between will only be generated if the table is a view. "TABLE" is a template object and "TblType" is one of its properties,
3. Function Block Function block output an object property as string or output a string return by a function. Syntax:
Note the "=" symbol immediately after the start tag. This is analogous to <%= ... %> in ASP. The function can be a built-in system function or an user function defined in user code file (see Using User Code). You can refer to the System Functions list for functions that you can call or override.
Syntax: <!--##=Object.Property##--> Example <!--##=PROJ.ProjName##--> This line will write the project name in the output file.
Format 2 (access a function): Syntax: Example <!--## <!--##=MyFunction##--> This line calls the function "MyFunction" and write the string returned by the function in the output file. In real cases, the returned string is the code you want to generate.
4. Function Block with Indentation Syntax:
Example If you have 4 spaces before the following tag: and the Script Block will output the following block of codes: ' Field User ID The final output will become the following. Note that all lines are indented by the specific amount of space before the tag: ' Field User ID
5. Language Block Syntax:
Example <!--##@BackToList##--> This line outputs the ASP.NET phrase "<%= Language.Phrase("BackToList") %>". If the run time language file contain the node: <phrase id="BackToList" value="Back to List"/> At run time when executing the ASP.NET codes, it will subsequently output the phrase "Back to List" to the browser. This tag is equivalent to: <%=
Language.Phrase("BackToList")
%>
Also See: Template Object Properties
|
||||||||||||
©2004-2011 e.World Technology Ltd. All rights reserved. |