|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
System.InvalidCastException was unhandled by user codeif user exist in database. For some reason, when I run application to test, it will crash on following line with error message... sqlLoginCheck.Parameters.Add("P") Message="The SqlParameterCollection only accepts non-null SqlParameter type objects, not String objects." Below is exact code in my logincheck sub procedure. Protected Sub LoginCheck() Dim intResult As Integer Dim conSqlConnection As SqlConnection = New SqlConnection(ConfigurationManager.ConnectionStrings("SRConnectionString").ConnectionString) Dim sqlLoginCheck As SqlCommand = New SqlCommand("uspCheckLogin", conSqlConnection) sqlLoginCheck.CommandType = Data.CommandType.StoredProcedure sqlLoginCheck.CommandText = "uspCheckLogin" sqlLoginCheck.Parameters.Add("@Username", Data.SqlDbType.NVarChar, 10).Value = txtUsername.Text sqlLoginCheck.Parameters.Add("@Password", Data.SqlDbType.NVarChar, 10).Value = txtPassword.Text Dim P As SqlParameter = New SqlParameter("@Result", Data.SqlDbType.Int) P.Direction = Data.ParameterDirection.Output conSqlConnection.Open() sqlLoginCheck.Parameters.Add("P") sqlLoginCheck.ExecuteNonQuery() intResult = Convert.ToInt32(sqlLoginCheck.Parameters("@Result").Value) conSqlConnection.Close() If intResult = 1 Then Session("strUsername") = txtUsername.Text Server.Transfer("success.aspx") Else Server.Transfer("Failed.aspx") End If End Sub Any help in this matter would be appreciated. Thanks, Deven
Show quote
Hide quote
"Deven" <De***@discussions.microsoft.com> az alábbiakat Ãrta a következÅ‘ Hi,üzenetben news:50442500-EBA5-4DB7-A733-388890C3A8E0@microsoft.com... > I have custom login.aspx page in which I am calling store procedure to > verify > if user exist in database. For some reason, when I run application to > test, > it will crash on following line with error message... > > sqlLoginCheck.Parameters.Add("P") > > Message="The SqlParameterCollection only accepts non-null SqlParameter > type > objects, not String objects." > > Below is exact code in my logincheck sub procedure. > > Protected Sub LoginCheck() > > Dim intResult As Integer > Dim conSqlConnection As SqlConnection = New > SqlConnection(ConfigurationManager.ConnectionStrings("SRConnectionString").ConnectionString) > Dim sqlLoginCheck As SqlCommand = New SqlCommand("uspCheckLogin", > conSqlConnection) > > sqlLoginCheck.CommandType = Data.CommandType.StoredProcedure > sqlLoginCheck.CommandText = "uspCheckLogin" > > sqlLoginCheck.Parameters.Add("@Username", Data.SqlDbType.NVarChar, > 10).Value = txtUsername.Text > sqlLoginCheck.Parameters.Add("@Password", Data.SqlDbType.NVarChar, > 10).Value = txtPassword.Text > > Dim P As SqlParameter = New SqlParameter("@Result", > Data.SqlDbType.Int) > > P.Direction = Data.ParameterDirection.Output > conSqlConnection.Open() > sqlLoginCheck.Parameters.Add("P") > sqlLoginCheck.ExecuteNonQuery() > intResult = > Convert.ToInt32(sqlLoginCheck.Parameters("@Result").Value) > conSqlConnection.Close() > If intResult = 1 Then > Session("strUsername") = txtUsername.Text > Server.Transfer("success.aspx") > Else > Server.Transfer("Failed.aspx") > End If > End Sub > > Any help in this matter would be appreciated. > > Thanks, > Deven What the line < sqlLoginCheck.Parameters.Add("P") > does is trying to add the string "P" as an sqlparameter, however what You would like to do is to add the variable named P to the parameters collection using the line: sqlLoginCheck.Parameters.Add(P) (notice that there are no quotes around P) -Zsolt Thank you for your quick response. It resolved my problem.
Thanks, Deven Show quoteHide quote "miher" wrote: > > > "Deven" <De***@discussions.microsoft.com> az alábbiakat Ãrta a következÅ‘ > üzenetben news:50442500-EBA5-4DB7-A733-388890C3A8E0@microsoft.com... > > I have custom login.aspx page in which I am calling store procedure to > > verify > > if user exist in database. For some reason, when I run application to > > test, > > it will crash on following line with error message... > > > > sqlLoginCheck.Parameters.Add("P") > > > > Message="The SqlParameterCollection only accepts non-null SqlParameter > > type > > objects, not String objects." > > > > Below is exact code in my logincheck sub procedure. > > > > Protected Sub LoginCheck() > > > > Dim intResult As Integer > > Dim conSqlConnection As SqlConnection = New > > SqlConnection(ConfigurationManager.ConnectionStrings("SRConnectionString").ConnectionString) > > Dim sqlLoginCheck As SqlCommand = New SqlCommand("uspCheckLogin", > > conSqlConnection) > > > > sqlLoginCheck.CommandType = Data.CommandType.StoredProcedure > > sqlLoginCheck.CommandText = "uspCheckLogin" > > > > sqlLoginCheck.Parameters.Add("@Username", Data.SqlDbType.NVarChar, > > 10).Value = txtUsername.Text > > sqlLoginCheck.Parameters.Add("@Password", Data.SqlDbType.NVarChar, > > 10).Value = txtPassword.Text > > > > Dim P As SqlParameter = New SqlParameter("@Result", > > Data.SqlDbType.Int) > > > > P.Direction = Data.ParameterDirection.Output > > conSqlConnection.Open() > > sqlLoginCheck.Parameters.Add("P") > > sqlLoginCheck.ExecuteNonQuery() > > intResult = > > Convert.ToInt32(sqlLoginCheck.Parameters("@Result").Value) > > conSqlConnection.Close() > > If intResult = 1 Then > > Session("strUsername") = txtUsername.Text > > Server.Transfer("success.aspx") > > Else > > Server.Transfer("Failed.aspx") > > End If > > End Sub > > > > Any help in this matter would be appreciated. > > > > Thanks, > > Deven > > Hi, > What the line < sqlLoginCheck.Parameters.Add("P") > does is trying to add > the string "P" as an sqlparameter, however what You would like to do is to > add the variable named P to the parameters collection using the line: > sqlLoginCheck.Parameters.Add(P) > (notice that there are no quotes around P) > > -Zsolt > >
Other interesting topics
Referencing to LinkButton in Gridview TemplateField
progress indicator long running proc NO Button click Help with C# using popup pox Commented codes still affect the program Web Deployment Project - Publish? Image does not fit correctly in a div frame Localization issue with master page. Multiple Select commands BUG? Repeating tag syntax in VS 2008 source mode...? GDI+ and font sizes |
|||||||||||||||||||||||