<% = strTxtTextFormating %> |
|
[B]<% = strTxtBold %>[/B] |
<% = strTxtBold %> |
[I]<% = strTxtItalic %>[/I] |
<% = strTxtItalic %> |
[U]<% = strTxtUnderline %>[/U] |
<% = strTxtUnderline %> |
[CENTER]<% = strTxtCentre %>[/CENTER] |
<% = strTxtCentre %> |
|
|
<% = strTxtImagesAndLinks %> |
|
[IMG]http://myWeb.com/smiley.gif[/IMG] |
 |
[URL=http://www.myWeb.com]<% = strTxtMyLink %>[/URL] |
<% = strTxtMyLink %> |
[URL]http://www.myWeb.com[/URL] |
http://www.myWeb.com |
[EMAIL=me@myWeb.com]<% = strTxtMyEmail %>[/EMAIL] |
<% = strTxtMyEmail %> |
|
|
<% = strTxtFontTypes %> |
|
[FONT=Arial]Arial[/FONT] |
Arial |
[FONT=Courier]Courier[/FONT] |
Courier |
[FONT=Times]Times[/FONT] |
Times |
[FONT=Verdana]Verdana[/FONT] |
Verdana |
|
|
<% = strTxtFontSizes %> |
|
[SIZE=1]<% = strTxtFontSize %> 1[/SIZE] |
<% = strTxtFontSize %> 1 |
[SIZE=2]<% = strTxtFontSize %> 2[/SIZE] |
<% = strTxtFontSize %> 2 |
[SIZE=3]<% = strTxtFontSize %> 3[/SIZE] |
<% = strTxtFontSize %> 3 |
[SIZE=4]<% = strTxtFontSize %> 4[/SIZE] |
<% = strTxtFontSize %> 4 |
[SIZE=5]<% = strTxtFontSize %> 5[/SIZE] |
<% = strTxtFontSize %> 5 |
[SIZE=6]<% = strTxtFontSize %> 6[/SIZE] |
<% = strTxtFontSize %> 6 |
|
|
<% = strTxtFontColours %> |
|
[COLOR=BLACK]<% = strTxtBlack & " " & strTxtFont %>[/COLOR] |
<% = strTxtBlack & " " & strTxtFont %> |
[COLOR=WHITE]<% = strTxtWhite & " " & strTxtFont %>[/COLOR] |
<% = strTxtWhite & " " & strTxtFont %> |
[COLOR=BLUE]<% = strTxtBlue & " " & strTxtFont %>[/COLOR] |
<% = strTxtBlue & " " & strTxtFont %> |
[COLOR=RED]<% = strTxtRed & " " & strTxtFont %>[/COLOR] |
<% = strTxtRed & " " & strTxtFont %> |
[COLOR=GREEN]<% = strTxtGreen & " " & strTxtFont %>[/COLOR] |
<% = strTxtGreen & " " & strTxtFont %> |
[COLOR=YELLOW]<% = strTxtYellow & " " & strTxtFont %>[/COLOR] |
<% = strTxtYellow & " " & strTxtFont %> |
[COLOR=ORANGE]<% = strTxtOrange & " " & strTxtFont %>[/COLOR] |
<% = strTxtOrange & " " & strTxtFont %> |
[COLOR=BROWN]<% = strTxtBrown & " " & strTxtFont %>[/COLOR] |
<% = strTxtBrown & " " & strTxtFont %> |
[COLOR=MAGENTA]<% = strTxtMagenta & " " & strTxtFont %>[/COLOR] |
<% = strTxtMagenta & " " & strTxtFont %> |
[COLOR=CYAN]<% = strTxtCyan & " " & strTxtFont %>[/COLOR] |
<% = strTxtCyan & " " & strTxtFont %> |
[COLOR=LIME GREEN]<% = strTxtLimeGreen & " " & strTxtFont %>[/COLOR] |
<% = strTxtLimeGreen & " " & strTxtFont %> |
|
|
<% = strTxtQuoting %> |
|
[Quote=Username]<% = strTxtQuotedMessage & " " & strTxtWithUsername %>[/QUOTE] |
[Quote]<% = strTxtQuotedMessage %>[/QUOTE] |
|
|
<% = strTxtCodeandFixedWidthData %> |
|
[CODE]<% = strTxtMyCodeData %>[/CODE] |
<%
If blnFlashFiles Then %>
|
|
<% = strTxtFlashFilesImages %> |
|
[FLASH WIDTH=50 HEIGHT=50]http://www.myWeb.com/flash.swf[/FLASH] |
<%
End If
If blnEmoticons Then %>
|
|
<% = strTxtEmoticons %> |
|
<%
'Intilise the index position (we are starting at 1 instead of position 0 in the array for simpler calculations)
intIndexPosition = 1
'Calcultae the number of outer loops to do
intNumberOfOuterLoops = UBound(saryEmoticons) / 2
'If there is a remainder add 1 to the number of loops
If UBound(saryEmoticons) MOD 2 > 0 Then intNumberOfOuterLoops = intNumberOfOuterLoops + 1
'Loop throgh th list of emoticons
For intLoop = 1 to intNumberOfOuterLoops
Response.Write("")
'Loop throgh th list of emoticons
For intInnerLoop = 1 to 2
'If there is nothing to display show an empty box
If intIndexPosition > UBound(saryEmoticons) Then
Response.Write(" | ")
Response.Write(" | ")
Response.Write(" | ")
'Else show the emoticon
Else
Response.Write("![]() | ")
Response.Write("" & saryEmoticons(intIndexPosition,1) & " | ")
Response.Write("" & saryEmoticons(intIndexPosition,2) & " | ")
End If
'Minus one form the index position
intIndexPosition = intIndexPosition + 1
Next
Response.Write(" ")
Next
%>
|
<%
End If
%>