HiI have this stored procedure ...@CartID nVarChar (20),@DeliveryInformation nVarChar(500) = NULLASSET NOCOUNT ON--SET ARITHABORT ONINSERT INTO OrderInfo (CartID, DeliveryInformation) VALUES (@CartID,@UserDeliveryInformation)DECLARE @AddedID IntSET @AddedID = SCOPE_IDENTITY();INSERT INTO OrderStatusInfo (OrderID, OrderName) VALUES (@AddedID, @CartID)
If I run this through SSM it works as I want. But when I call the procedure from my webbpage the second insert part does not work. Does anyone have any clue to why this might occur?