Hi folks, i have the following line of code in VS2008.
VirtualPathData virtualPathData =
RouteTable.Routes.GetVirtualPath(_viewContext.RequestContext,
"Home",
pageLinkValueDictionary);
I wish to debug this GetVirtualpath(..)
method .. to see what it's trying to do.
I'm assuming i need to grab the symbols from the MS symbol server.
What i did was
- Turn OFF Enable just my code
- Turn ON Enable source server support
- Show the Modules window when debugging (to manually load the correct module)
Compile in debug mode, put a breakpoint on that line about and debug-run. When i hit the line, i manually load in System.Web.Routing(..)
from MS Symbol server. This works (the pdb is downloaded locally) and when i step INTO this line, i goto some Dissassemler code :(
Can anyone see what i'm doing wrong?