% @LANGUAGE="VBSCRIPT" %>
<% Response.buffer = True %>
<%
dim rsProfile
set rsProfile = Server.CreateObject("ADODB.Recordset")
'build SQL statement (step three: build SQL (query))
'NOTE: you need to build a SQL statement for each recordset you create.
dim profileID
profileID=request("profileID")
if (profileID="") then
profileID=session("sesUserID")
end if
dim sqlProfile
sqlProfile = "SELECT * FROM tblUsers WHERE userID = " & profileID & ";"
'send sql statements and retrieve data into recordsets (step four: send SQL to database)
rsProfile.open sqlProfile, objConn, 1, 2
rsProfile.Movefirst
%>
Incline Kids Wrestling: Teams
 |
| Incline Kids Wrestling |
| "Champions on and off the Mat" |
|
 |
 |
 |
|
|
Incline Wrestling
"It is through competiton that we discover ourselves" |
 |
Many Incline Kids wrestlers also participate with the Incline Middle School and Incline High School Wrestling programs. You are invited you to stop by a practice and say hello. Better yet, come out and cheer on "the kids" at a competition. By attending one of our wrestling events you'll surely witness some exciting action on the mat and we know you'll become our biggest fan.
Please click on the team of your choice to find out more about how Incline Kids are making strides. To find out how you can become involved please contact coach Tony Guerra, phone 775.762.6185 or email tony@inclinewrestling.org.
|
Incline High School |
Incline Kids Wrestling Club |
Incline Middle School |
 |
 |
 |
|
|
|
Why wrestle?
1. Wrestling teaches teamwork and helps youngsters belong to a group.
2. Wrestling encourages and requires academic discipline in order to participate.
3. Wrestling promotes goal setting and the value of hard, intelligent work.
4. Wrestling teaches sportsmanship and fair play.
5. Wrestling helps yougsters learn to win with humility and to lose with dignity.
6. Wrestling develops and encourages physical conditioning and athletic skills.
7. Wrestling helps build self-esteem and offers opportunities for leadership amongst ones peers.
8. Wrestling lets kids have fun while participating in a well structured and positive environment.
|
|
|
<%
'clearing the recordset object and the connection
set objConn = nothing
set rsProfile = nothing
%>