when user login it will check if user exist in database or not
what is wrong with this code
Dim a As New System.Data.DataView
Dim b As New System.Web.UI.DataSourceSelectArguments
Dim usname As String
Dim password As String
SqlDataSource1.SelectCommand = " select usname , password from userinfo "
a = SqlDataSource1.Select(b)
If ( usname == textbox1.Text & password == textbox2.Text )
Response.Redirect("fill.aspx")
Else
Label8.Text = "not valid"
End If