chatform.asp <% If Request.Form ("Opinion")="" then ShowForm() else if session("AA")="" then NewUser() GoAhead() else GoAhead() end if end if %> <% Sub ShowForm() %>
<html><body bgcolor=FFFFFF> <center> <form method=post action=chatform.asp> <table border=0><tr><td> <% if Session("AA")="" then %> Chose a name or nickname <input type=text name=Name size=20><BR> Type your opinion <% else %> <% =Session("AA") %> <% end if %> <input type=text size=60 name=Opinion value="<% =request.form("Opinion") %>"><BR> <input type=submit value="Submit"> </td><tr></table> </form> </center> </body> </html>