Click here to Skip to main content
15,893,814 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have divided login to 2 parts one for admin and one for user, they`re differentiated through TypeID field which has values 1 and 2

I want to make function that check the TypeID to decide the response redirect page

I got this so far

VB
Public Shared Function CheckUser(ByVal usename As String) As Int32
    Const sql = "SELECT TypeID FROM Registration where usename = @UserName"
    Using con As New SqlConnection(ConfigurationManager.ConnectionStrings("RegconnectionString").ConnectionString)
        Using cmd = New SqlCommand(sql, con)
            cmd.Parameters.AddWithValue("@TypeID", usename)
            con.Open()
            Dim x As Integer = cmd.ExecuteScalar
            Return x
        End Using
    End Using
End Function



the input for this function will be the text coming from textUserName.text
Posted
Updated 27-Dec-12 7:12am
v2

1 solution

You have not specified what your problem is, but looking at the code supplied you seem to using the wrong parameter name in the AddWithValue call.

You specify the query as:
SQL
SELECT TypeID FROM Registration where usename = @UserName

but use '@TypeID' in the call to the AddWithValue function.

You need to change
VB
cmd.Parameters.AddWithValue("@TypeID", usename)
into
VB
cmd.Parameters.AddWithValue("@UserName", usename)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900