It has error when submit order
when i submit order it has error "Server Error in '/TBH_Web' Application.
--------------------------------------------------------------------------------
MSDTC on server 'WIN06V9\1982F005-9F78-46' is unavailable.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: MSDTC on server 'WIN06V9\1982F005-9F78-46' is unavailable.
Source Error:
Line 519: cmd.Parameters.Add("@Quantity", SqlDbType.Int).Value = orderItem.Quantity
Line 520: cmd.Parameters.Add("@OrderItemID", SqlDbType.Int).Direction = ParameterDirection.Output
Line 521: cn.Open()
Line 522: Dim ret As Integer = ExecuteNonQuery(cmd)
Line 523: Return CInt(cmd.Parameters("@OrderItemID").Value)
" why error occor, and how i can solve this proplem
thank
|