SteveH
05-29-2012, 07:47 PM
Hello
I have a basic Web chat script that combines JS and ASP. I am trying to format a snippet of code so that I can change the font size, nothing else.
Part of the chat uses a couple of ASP snippets:
<p>
<%= getMsg("logout.no_longer_on") %></p> in a file called 'expired.asp' and this:
} // > function onUsersChanged(..)
/**
* This user has logged off.
*
*/
function onLoggedOff() {
alert('<%= getMsg("logout.no_longer_on") %>');
parent.location.replace('<%= LOGGED_OUT_PAGE %>');
}
// -->
</script>
in a file called 'message.asp'.
These two snippets draw on this: # logout screen
logout.no_longer_on=You are no longer logged on. Thank you for your visit. which is contained in another file called 'messages.en' in order to thank the visitor who is logging off.
What I would like to do it font-format this: You are no longer logged on. Thank you for your visit., but I am not sure how to do it.
Thanks for any advice.
I have a basic Web chat script that combines JS and ASP. I am trying to format a snippet of code so that I can change the font size, nothing else.
Part of the chat uses a couple of ASP snippets:
<p>
<%= getMsg("logout.no_longer_on") %></p> in a file called 'expired.asp' and this:
} // > function onUsersChanged(..)
/**
* This user has logged off.
*
*/
function onLoggedOff() {
alert('<%= getMsg("logout.no_longer_on") %>');
parent.location.replace('<%= LOGGED_OUT_PAGE %>');
}
// -->
</script>
in a file called 'message.asp'.
These two snippets draw on this: # logout screen
logout.no_longer_on=You are no longer logged on. Thank you for your visit. which is contained in another file called 'messages.en' in order to thank the visitor who is logging off.
What I would like to do it font-format this: You are no longer logged on. Thank you for your visit., but I am not sure how to do it.
Thanks for any advice.