when the moderator is selected i would like it to redirect to there Profile if you could help me out thanks..i wrote this but cant get any farther..please do help me
'Initlaise the Moderators List varible if there are records returned for the forum
Response.Write "<form> "
Response.Write "<td bgcolor=""0E,36,52"" width ='100%' align=""left""> "
Response.Write vbCrLf & " <select onChange="""" name=""asdfasdfagasdg"">"
Response.Write vbCrLf & " <option value="""""
Response.Write " selected"
Response.Write "></option>"
'Loop round to build a list of moderators, if there are any
Do While NOT rsCommon.EOF
'Move to the next record
strmoderator = rsCommon("Username")
rsCommon.MoveNext
Response.Write vbCrLf & " <option value="""""
Response.Write " selected"
Response.Write "> " & strmoderator & " </option>"
Loop
Response.Write vbCrLf & " </select> </ span></td>"
Response.Write("</td>")
'Close the recordset
Response.Write "</form> "
rsCommon.Close
end if