<%@ Language=VBScript %> <% ' 'Strngs.asp ' 'Author: Nick Heap 'Date: August 10 2003 'Version: 1.0 'Description: A Dynamic web page using ASP ' 'Declare variables Dim Sentence, Sentence1, Sentence2 Sentence = "The quick brown fox jumped over the lazy dog" Sentence = Replace(Sentence, "dog", "fox") Sentence = Replace(Sentence, "fox", "dog") %> Strings

<%= Sentence %>