Creating a Variable to be reused multiple times on a page is easy to do with VBScript in Classic ASP.
When I first began learning ASP Classic around 1999-2000, I learned how to do this, but as I got better at design, I no longer used this method unless I needed to write out code multiple times, as you see on all the sites I design.
We are going to create the table layout for our new SynEdit, which will be launched soon.
With the Sample ASP Variable held within the layout.
[CarrzSyEdit - CFF CS Custom Syntax Editor (Viewing now)]
CFFCS | CarrzSynEdit: | ASP/VBScript
time = getTime
strCode = "Your code goes here."
theFullASPCode = "<button class=""button"" onclick=""selectPreText(">'Code')"">Select All Text</button> <span id=""Warning""></span>"  & vbCrLf & _

"<ul class=""PreHeader"">"  & vbCrLf & _
"<li>"  & vbCrLf & _
"  <span class=""title"" title=""CFFCS : Site Name | CFF Coding Source"">CFFCS</span> "  & vbCrLf & _
"  <span class=""title"" id=""HeaderLink"">CarrzSynEdit</span>"  & vbCrLf & _
"    </a> "  & vbCrLf & _
"  <span class=""title"" class=""time"">"&time&"</span>"  & vbCrLf & _
"</li>"  & vbCrLf & _
"<li>"  & vbCrLf & _
"   <div class=""blockcode"">"&strCode&"</div>"  & vbCrLf & _
"</li>"  & vbCrLf & _
"</ul>"
%>

What is happening in this code?
The " & _
Copy
Search Site
Search Google
allows you to have multiple lines in your code.
The vbCrLf
Copy
Search Site
Search Google
creates a new line in the HTML code when rendered.
The " & vbCrLf & _
Copy
Search Site
Search Google
entire line allows for multiple lines to be added in your code, and then creates the new line in your HTML when rendered.
Place this code in a new page and save it, and then run it.