Installing Web+ custom tags
In order to use a Web+ custom tag you need to properly install it so that Web+ server knows about it. To install a custom tag:
- Load the Web+ Server Manager through a web browser.
- Go to "Custom Tags" section.
- In the Tag Name box, give the name you want to call your custom tag.
- In DLL Path, give the full path where you put your custom tag's DLL file. (or .SO file for Unix). 5. In Function Name, type in the entry function's name Web+ server will first call. For example, the function name is "myPuts" if you defined a Web+ entry function as:
-------------------------------
WEBPLUS_PUBLIC VOID myPuts(HWEBP *webpEnv) {...}
-------------------------------
Three very useful Web+ custom tags are: Web_ ChkMail, Web_ Print and Web_ QueryIpHostName. Also, please note that all custom tags work within <webPrint> ... </ webPrint>.
|