こんにちは、私のシステムでコードを書くにはどうすればよいですか。
1) ユーザー 1 : 追加、削除、更新、表示 2) ユーザー 2: 更新のみ 3) ユーザー 3 : 表示のみ
私はvb.netとアクセスデータベースを使用しています。私のコードのいくつかがあります
Dim strConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\user\Documents\MIS\LabSystem\LabTestSystem\LabSystemDB.mdb"
Dim conn As New OleDbConnection(strConnectionString)
conn.Open()
'Enter default login details username and password
cmd = New OleDbCommand("select * from Login where username='" & TextBox1.Text & "' and password='" & TextBox2.Text & "'", conn)
dt.Clear()
da = New OleDbDataAdapter(cmd)
da.Fill(dt)
If dt.Rows.Count > 0 Then
Session("username") = TextBox1.Text
Response.Redirect("Main.aspx")
Else
TextBox1.Text = ""
TextBox2.Text = ""
Label1.Text = "Incorrect value: Invalid login or password."
Label1.ForeColor = System.Drawing.Color.Red
End If