eramgarden Posted June 16, 2005 Posted June 16, 2005 Is there a tool to see what an ASP.Net page is doing? for example, track what stored proc it's calling , the behind the scenes activities of an application? I found this site but not what I'm looking for: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconmonitoringaspnetapplicationperformance.asp Quote
Moderators Robby Posted June 16, 2005 Moderators Posted June 16, 2005 You can also enable tracing, in the web.config file set the enable tracing stuff to true. This will give you an idea on the size of some of your objects and such. Quote Visit...Bassic Software
eramgarden Posted June 16, 2005 Author Posted June 16, 2005 now, would that cause the app to slow down if I do it in production? Also, is there some kind of ASP.Net load tester package somewhere out there? I'm new at this job, another company developed this app and they only do a little bit of unit testing and turn over the code to us (that was their agreement!). It would be good to load test the app in our test environment. The app is huge, takes 10 to 15 mins to compile. I thought about using NUnit but I dont think that's efficient.. thoughts? Quote
Moderators Robby Posted June 16, 2005 Moderators Posted June 16, 2005 The tracing can be enabled for local only. You can load test your app with ACT (Application Center Tester), you'll find it in Program Files | VS Ent Features. Quote Visit...Bassic Software
jspencer Posted June 21, 2005 Posted June 21, 2005 You can also try Redgate ANTS Profiler which is excellent (but not free). They do have a trial period though. Quote
eramgarden Posted June 22, 2005 Author Posted June 22, 2005 (edited) Ok, been looking at RedGate and ACT..but is there something I can do to trace the code in production?? For example, I have SQL Profiler on and I can trace the production Stored Procs ... I want to do something smiliar because the code doesnt have good error handeling ..users get lots of errors and very hard to trace in code.. For example, users get this error :"Failed To Load Page State from Session"..I looked at the "stack trace" that's on the error page but still dont know to exactly trace this.. Edited June 22, 2005 by eramgarden Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.