variant 1 /2010 partie web
Page 1 sur 3 • Partagez
Page 1 sur 3 • 1, 2, 3
variant 1 /2010 partie web
Imports System.Data.SqlClient
Imports System.Data
Partial Class Authentification
Inherits System.Web.UI.Page
Dim con As New SqlConnection
Dim com As New SqlCommand
Dim dr As SqlDataReader
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
con.ConnectionString = "Data Source=.;Initial Catalog=Variante N°1;Integrated Security=True"
con.Open()
com.Connection = con
Me.TextBox1.Focus()
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
com.CommandText = "select * from Joueur"
com.CommandType = CommandType.Text
dr = com.ExecuteReader
Dim bol As New Boolean
bol = True
While dr.Read
If dr(4).Equals(CInt(Me.TextBox2.Text)) And dr(1).Equals(Me.TextBox1.Text) Then
bol = False
End If
End While
If bol = False Then
Me.Session("a") = CInt(Me.TextBox2.Text)
Response.Redirect("Information joueur.aspx")
Else
Me.Label1.Text = "Compte incorrect ! "
End If
End Sub
End Class
Imports System.Data
Partial Class Authentification
Inherits System.Web.UI.Page
Dim con As New SqlConnection
Dim com As New SqlCommand
Dim dr As SqlDataReader
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
con.ConnectionString = "Data Source=.;Initial Catalog=Variante N°1;Integrated Security=True"
con.Open()
com.Connection = con
Me.TextBox1.Focus()
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
com.CommandText = "select * from Joueur"
com.CommandType = CommandType.Text
dr = com.ExecuteReader
Dim bol As New Boolean
bol = True
While dr.Read
If dr(4).Equals(CInt(Me.TextBox2.Text)) And dr(1).Equals(Me.TextBox1.Text) Then
bol = False
End If
End While
If bol = False Then
Me.Session("a") = CInt(Me.TextBox2.Text)
Response.Redirect("Information joueur.aspx")
Else
Me.Label1.Text = "Compte incorrect ! "
End If
End Sub
End Class
karima koko-
- Nombre de messages : 15
Date d'inscription : 02/07/2011
Re: variant 1 /2010 partie web
enregistrement d'un joueur code dyal(valider annuler)
Imports System.Data.SqlClient
Imports System.Data
Partial Class Enregistrement_d_un_joueur
Inherits System.Web.UI.Page
Dim con As New SqlConnection
Dim com As New SqlCommand
Dim dr As SqlDataReader
Dim com1, com2, com3 As New SqlCommand
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
con.ConnectionString = "Data Source=.;Initial Catalog=Variante N°1;Integrated Security=True"
Me.TextBox8.Focus()
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
If Not Page.IsPostBack = False Then
con.Open()
com.Connection = con
com2.Connection = con
com1.Connection = con
com3.Connection = con
Dim str As String
If Me.RadioButton1.Checked = True Then
str = Me.RadioButton1.Text
Else
str = Me.RadioButton2.Text
End If
com2.CommandText = "select * from Joueur"
com2.CommandType = CommandType.Text
dr = com2.ExecuteReader
Dim bol As New Boolean
bol = True
While dr.Read
If dr(0).Equals(CInt(Me.TextBox8.Text)) Then
bol = False
End If
End While
dr.Close()
If bol = False Then
Me.Label1.Text = "Ce N° Joueur existe déjà"
Else
com.CommandText = "insert into Joueur values('" & Me.TextBox8.Text & "','" & Me.TextBox1.Text & "','" & str & "','" & Me.TextBox7.Text & "')"
com.ExecuteNonQuery()
com1.CommandText = "insert into Jeu_Simple values('" & Me.TextBox8.Text & "','" & Me.TextBox6.Text & "','" & "" & "' )"
com1.ExecuteNonQuery()
com3.CommandText = "select max(Code_généré) from Joueur"
com3.CommandType = CommandType.Text
Me.Label1.Text = ("L'opération est réussit : Votre code est: !" & com3.ExecuteScalar)
End If
End If
Catch ex As Exception
Me.Label2.Text = ex.Message
End Try
End Sub
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
Me.TextBox1.Text = ""
Me.TextBox2.Text = ""
Me.TextBox3.Text = ""
Me.TextBox4.Text = ""
Me.TextBox5.Text = ""
Me.TextBox1.Focus()
End Sub
End Class
Imports System.Data.SqlClient
Imports System.Data
Partial Class Enregistrement_d_un_joueur
Inherits System.Web.UI.Page
Dim con As New SqlConnection
Dim com As New SqlCommand
Dim dr As SqlDataReader
Dim com1, com2, com3 As New SqlCommand
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
con.ConnectionString = "Data Source=.;Initial Catalog=Variante N°1;Integrated Security=True"
Me.TextBox8.Focus()
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
If Not Page.IsPostBack = False Then
con.Open()
com.Connection = con
com2.Connection = con
com1.Connection = con
com3.Connection = con
Dim str As String
If Me.RadioButton1.Checked = True Then
str = Me.RadioButton1.Text
Else
str = Me.RadioButton2.Text
End If
com2.CommandText = "select * from Joueur"
com2.CommandType = CommandType.Text
dr = com2.ExecuteReader
Dim bol As New Boolean
bol = True
While dr.Read
If dr(0).Equals(CInt(Me.TextBox8.Text)) Then
bol = False
End If
End While
dr.Close()
If bol = False Then
Me.Label1.Text = "Ce N° Joueur existe déjà"
Else
com.CommandText = "insert into Joueur values('" & Me.TextBox8.Text & "','" & Me.TextBox1.Text & "','" & str & "','" & Me.TextBox7.Text & "')"
com.ExecuteNonQuery()
com1.CommandText = "insert into Jeu_Simple values('" & Me.TextBox8.Text & "','" & Me.TextBox6.Text & "','" & "" & "' )"
com1.ExecuteNonQuery()
com3.CommandText = "select max(Code_généré) from Joueur"
com3.CommandType = CommandType.Text
Me.Label1.Text = ("L'opération est réussit : Votre code est: !" & com3.ExecuteScalar)
End If
End If
Catch ex As Exception
Me.Label2.Text = ex.Message
End Try
End Sub
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
Me.TextBox1.Text = ""
Me.TextBox2.Text = ""
Me.TextBox3.Text = ""
Me.TextBox4.Text = ""
Me.TextBox5.Text = ""
Me.TextBox1.Focus()
End Sub
End Class
karima koko-
- Nombre de messages : 15
Date d'inscription : 02/07/2011
Re: variant 1 /2010 partie web
CHNO HADA AKHTI
goldabdel-
- Nombre de messages : 142
Date d'inscription : 19/12/2010
Re: variant 1 /2010 partie web
Té sur ke hadchi kaya9raweh s7ab reseau ???
si nn raki ghalta f forum hada khass b reseau, repon vite pr changé l'emplacement dial sujet
si nn raki ghalta f forum hada khass b reseau, repon vite pr changé l'emplacement dial sujet
Mr.Hicham-
- Nombre de messages : 464
Date d'inscription : 25/05/2010
Re: variant 1 /2010 partie web
3amri machft Hadchi 3and Shab Reseaux !!!!
Mr.zakaria- Administrateur
- Nombre de messages : 383
Date d'inscription : 25/06/2011
Page 1 sur 3 • 1, 2, 3
Sujets similaires
» Préparation TDI2 (EFF 2010 Var4)
» Correction : Partie Asp variante 4 EFF { 2010 }
» demande de coorection EFF 2010 V4 ou/et V5 TSDI PARTIE ASP.NET
» plzzz théorique 2010 premiére anné tsdi : Partie POO
» Correction de Examen Pratique eff 2010 (V3-V6-V9) sans la partie de linux
» Correction : Partie Asp variante 4 EFF { 2010 }
» demande de coorection EFF 2010 V4 ou/et V5 TSDI PARTIE ASP.NET
» plzzz théorique 2010 premiére anné tsdi : Partie POO
» Correction de Examen Pratique eff 2010 (V3-V6-V9) sans la partie de linux
Page 1 sur 3
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum
Ven Nov 16, 2018 6:14 pm par tri2b
» Examen de fin de formation Théorique 2018 TDM
Mar Juin 19, 2018 8:08 pm par Mr.Ayoub
» Examen de Passage Chef Chantier TP 2010 Pratique
Lun Juin 04, 2018 11:07 am par Mr.Ayoub
» Examen de fin de formation Chef de Chantier T.P 2012 Théorique
Dim Juin 03, 2018 3:59 pm par Mr.Ayoub
» Examen de fin de formation TSGO 2016 Pratique Variante 1
Dim Juin 03, 2018 3:36 pm par Mr.Ayoub
» Examen de fin de formation Chef de Chantier T.P 2008 Théorique
Dim Juin 03, 2018 3:25 pm par Mr.Ayoub
» Examen de Passage Chef de Chantier T.P 2008 Théorique et Pratique
Dim Juin 03, 2018 3:24 pm par Mr.Ayoub
» Examen de Fin de Formation Gestion des Entreprises TSGE 2015
Mar Mai 29, 2018 12:18 pm par Mr.Ayoub
» Examen de Passage 2015 Gestion des Entreprises TSGE
Mar Mai 29, 2018 11:55 am par Mr.Ayoub
» Examen de Passage Gestion des Entreprises TSGE 2017
Mar Mai 29, 2018 11:51 am par Mr.Ayoub