There is an example of LoadFile in the SavedRules. And you can also get the syntax from the drop-down list while editing a rule.
Basically, you would define your own token that will be searched for and replaced (or use something that is already in the output of the page). So lets say you wanted to define your own token like {MyToken} and then use a webcapture of a dynamic lookup page called MyToken.aspx that is in the root of your website.
SearchFor: {MyToken} ReplaceWith:
[RE:Webcapture("MyToken.aspx")] Now you could have the MyToken.aspx file dynamically lookup anything you want to put in that custom token. |