Hi all!
I get some strings into variables like:
Dim value as string=request.params("some_value")
I use these strings as Input parameters for a stored procedure wich is doing data insertion into a MS SQL server table.
Here is the problem: I get some variables whose values are "Nothing" (as debugger windows showed me..). After running the project there is an error:
"System.Data.SqlClient.SqlException: Procedure 'InsertValues' expects parameter '@my_param, which was not supplied."
What I can do in this case?
Thanks!
I get some strings into variables like:
Dim value as string=request.params("some_value")
I use these strings as Input parameters for a stored procedure wich is doing data insertion into a MS SQL server table.
Here is the problem: I get some variables whose values are "Nothing" (as debugger windows showed me..). After running the project there is an error:
"System.Data.SqlClient.SqlException: Procedure 'InsertValues' expects parameter '@my_param, which was not supplied."
What I can do in this case?
Thanks!