0
For some reason i my debugging tool is not working. I have been going through this issue.
Unable to start debugging on the web server. Operation not supported.
Unknown error: 0x80004005.
If you looked at the ajax code, I have getting back the response as it has to be saved in database.
My Sql Profiler report is :
exec sp_executesql N'INSERT [dbo].[Answers]([ProjectID], [SubQuestionID], [QuestionID], [Answer])
VALUES (@0, @1, @2, @3)
SELECT [ID]
FROM [dbo].[Answers]
WHERE @@ROWCOUNT > 0 AND [ID] = scope_identity()',N'@0 int,@1 int,@2 int,@3 nvarchar(max),@0=1559,@1=280,@2=800,@3=N'Completed,10'
0
debug ur SaveAnswer () and check there if the value u are passing is present at the
AnswerVM model and its answer property
0
check if the value is getting deserialized properly when it comes to the Controller