Example start and end tags

Suppose you want to locate the URL variable that is listed in the request:


REQUEST_METHOD=GET
URL=/company/contact.asp
HTTPS=off
  • Start Tag: \r\nURL=
    • The \r\n markings indicate a new line and are used to differentiate this specific URL from other possible URLs that are embedded in the page somewhere.
  • End Tag: \r\n
    • The end tag \r\n indicates that the included text is everything after the start tag until the end of the line.

To create an event that looks for the contact.asp page, the event must use this hit attribute and set the value for the event to be /contact.asp. The event is then configured to look for /contact/asp between the tags \r\nURL= and \r\n in the request.