Well, this is what I have, I must of screwed up somewhere...
<%@ Language=VBScript %>
<html>
<%
Dim UID
UID = request.querystring("Player"

%>
<form name=frmTT method=post action=SavingChr.asp?Player=<%=UID%>>
<head>
<title>Gladiators</title>
</head>
<body text="#000000" bgcolor="#C0C0C0" link="#0000EE" vlink="#FFFF99" alink="#FF0000">
<center><font size=+4>Creating your Gladiator</font><font size=+4></font>
<p><font size=+2>Now we must decide the strength of your character. Below, you have several choices that will define your gladiator. You must first choose a name, one that will reflect your glory in the Emperor's archives. (Let's not exagerate with the length, I say 25 characters should be enough!).</font>
<p><font size=+2>Then simply choose your desired race, each has their own advantage depending on size (Smaller creatures are faster, bigger ones are stronger while average height such as humans are balanced). Weapon represents your weapon of choice that you were raised to fight with. Style is how you fight and sponsor is whom you seek to represent at the tournaments.</font>
<p><font size=+2>Finally, you may reroll your stats as many times as you wish, just press the reroll button of the following page.</font>
<br><br><br>
<%
sql = "select race from races "
Set Conn = Server.CreateObject("ADODB.Connection"

Conn.Open "Glad"
Set rs = Server.CreateObject("ADODB.Recordset"

rs.Open sql, Conn
%>
<BR>
<BR>
<font size=+3>Choose your race</font>
<BR>
<select NAME="cmbRaces">
<%Do while not rs.eof%>
<OPTION value="<%= rs("race"

%>"><%=rs("race"

%>
<OPTION selected>Choose your race</option>
<%rs.movenext%>
<%loop%>
<%rs.close%>
</select>
<%
sql = "select name, bonus from skills "
rs.Open sql, Conn
%>
<BR>
<BR>
<font size=+3>Choose your inate skill</font>
<BR>
<select NAME="cmbSkills">
<%Do while not rs.eof%>
<OPTION value="<%= rs("name"

%><%= rs("bonus"

%>"><%=rs("name"

%><---><%= rs("bonus"

%>
<%rs.movenext%>
<%loop%>
<OPTION selected>Choose your inate skill</option>
<%rs.close%>
</select>
<%
sql = "select name, bonus from styles "
rs.Open sql, Conn
%>
<BR>
<BR>
<font size=+3>Choose your style of combat</font>
<BR>
<select NAME="cmbStyles">
<%Do while not rs.eof%>
<OPTION value="<%= rs("name"

%><%= rs("bonus"

%>"><%=rs("name"

%><---><%= rs("bonus"

%>
<%rs.movenext%>
<%loop%>
<OPTION selected>Choose your style of combat</option>
<%rs.close%>
</select>
<%
sql = "select name, bonus from sponsors "
rs.Open sql, Conn
%>
<BR>
<BR>
<font size=+3>Choose your sponsor</font>
<BR>
<select NAME="cmbSponsors">
<%Do while not rs.eof%>
<OPTION value="<%= rs("name"

%><%= rs("bonus"

%>"><%=rs("name"

%><---><%= rs("bonus"

%>
<%rs.movenext%>
<%loop%>
<OPTION selected>Choose your sponsor</option>
<%
rs.close
conn.close
set rs = nothing
set conn = nothing
%>
</select>
<br><br><br>
<div align=center><input type=submit value=Accept></div><br><br>
</body>
</form>
</html>
So this shows on the page what I want it to show and appears in the choices so I thought, I'll write these defaults in HTML and put the first one of each list as a default, but when I write it in, it's doubled in the list. This is what I mean:
Let's say "Human" is part of the races list, well in the line
<OPTION selected>Choose your race</option> I replaced "Choose your race" by "Human" and Human doubled up in the list???
While I have your attention, I'm at a point now where the user may go many different ways from a page. Let's say I have 5 different buttons which lead to 5 different pages, what would the buttons looks like, can I do...
First button is "Arena" so
<input type=button value=Arena OnClick=Arena.asp>
Now I know that is not the right syntax at all, but is it something just as simple?
Phailak