Hi guys,
Is it possible to use a wildcard when evaluating a UrlSegment?
I have a form application and once a submission occurs the user always ends up on a page the ends with .../finished (e.g. xxx.example.com/ss/myform/finished0001). I'd like to add some specific content that only shows up on the /finished pages.
I'm looking for something such as this to add to my Page.ss:
<% if URLSegment = */finished* %>
Do something
<% else %>
Do something else
<% end_if %>
Any thoughts are much appreciated.