Hi Donn,
Your asp code executes on the server, so it's not possible to display a messagebox on the client site.
but you can use some javascript like:
You can use the onload attribute in the body tag from the page where the submitbottun submits to.
<BODY onload="{window.alert('YourText');}" >
An other way, if you use a link to go to another page, you can use the onclick attribute.
<a onclick="{window.alert('YourText');}" href="somepage.asp">pagename</a>
Hope this will help,
Erik