| File | Signature |
|---|---|
| sample.asp | function Test(a, b) |
| test.asp | function Test(a, b) |
| test.asp | sub Test2() |
Sample comment
| Name | Type | Description |
|---|---|---|
| a | String | Parameter a |
| b | String | Parameter b |
| Returns | Boolean | true if success |
Here is a test:
x = Test("a", "b")
<!--#include file="sample.asp"-->
Méthode de test. Aucun paramètre spécial.
| Name | Type | Description |
|---|---|---|
| a | String | Le texte à afficher |
| b | String | Un autre paramètre à afficher |
| Returns | Boolean | true if success |
Voici un exemple:
x = Test("allo", "bye") ' appel la méthode avec 2 paramètre y = Test("a", "b")
<!--#include file="test.asp"-->
Some test2
<!--#include file="test.asp"-->