! ClrStack -a call in ASP.NET MVC application shows <NO DATA>
When I connect WinDbg to my ASP.NET MVC application and call !ClrStack -awhen an exception occurs, I do not see the locals or params values. All I see is this <NO DATA>.
Why is this happening? What parameters in my project can I check?
I understand that I see objects in quesiton through a call !dsoand find objects that are interesting to me in the output, but this is not a good solution for me, since I need to know exactly which objects are transferred to a particular function - I do not want to waste time on collecting the address of the eah address and running !doon them.
The application is built in mode DEBUG. When viewing the stack, all methods and types appear on the output, so I assume that there are no problems with the characters, although I am ready to try any commands necessary to re-synchronize or update the characters, if necessary.
CPU architecture ANY CPU, and we are using the 64-bit version of Windows Server 2008 R2.
I tried using the SOSEX !mk !mframeand commands !mdvto display param and locals, but they show <UNAVAILABLE>.
EDIT:
Here is an example of the type of output that I see:

Why is this happening?
, JIT ( ) ().
?
Microsoft, .
.symfix c:\debug\symbols
.reload
, WinDbg , lm. " pdb". ,
.sympath+ <path to your PDBs>
, SOSEX . :
!mk; *** Managed stack
!mframe <frame>; *** Switch to frame
!mdv; *** Dump values - This will at least give you the type
!mdv <frame>; *** Same as before but include !mframe
!mdso; *** Similar to !dso