BeginImpressionRegion
Overview
Begin an impression region within the supplied content. You can use the impression region to identify specific areas of content for analytical purposes.Syntax
BeginImpressionRegion(1)
| Ordinal | Type | Description | |
|---|---|---|---|
| 1 | string | Required | Name of impression region |
Example
<script runat="server>
Platform.Function.BeginImpressionRegion("mainBlock");
var content = Platform.Function.ContentArea("123456");
var moreContent = Platform.Function.ContentArea("789");
Platform.Function.EndImpressionRegion("mainBlock");
</script>