Calling stored procedure Code
Dim CN as New SqlConnection ()
Dim Invoiceid as String
Try
CN. ConnectionString = Dbconstr
CN. Open ()
Dim CMD as SqlCommand
CMD = New SqlCommand ("Addnewinvoiceinfo", CN)
Cmd.commandtype = CommandType.StoredProcedure
Cmd. Parameters.Add (New SqlParameter ("@sUserID", SqlDbType.Int))
Cmd. Parameters ("@sUserID"). Value = CInt (Userid.text)
Cmd. Parameters.Add (New SqlParameter ("@sClaimMethod", SqlDbType.VarChar, 50))
Cmd. Parameters ("@sClaimMethod"). Value = Transname.text
Cmd. Parameters.Add (New SqlParameter ("@sInvoiceNum", SqlDbType.VarChar, 50))
Cmd. Parameters ("@sInvoiceNum"). Value = Invoicenum.text
Cmd. Parameters.Add (New SqlParameter ("@sInvoiceDate", Sqldbtype.datetime))
Cmd. Parameters ("@sInvoiceDate"). Value = InvoiceDate.SelectedDate.Date
Cmd. Parameters.Add (New SqlParameter ("@sBuyCity", SqlDbType.VarChar, 50))
Cmd. Parameters ("@sBuyCity"). Value = Buycity.text
Cmd. Parameters.Add (New SqlParameter ("@sInvoiceID", SqlDbType.Int))
Cmd. Parameters ("@sInvoiceID"). Direction = ParameterDirection.ReturnValue
Cmd. ExecuteNonQuery ()
Invoiceid = CMD. Parameters ("@sInvoiceID"). Value.tostring ()
Cmd. Dispose ()
Catch ex as Exception
Response.Write (ex. ToString ())
Finally
CN. Close ()
End Try
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service