There is an request at my web application that takes a longer time, but I don't know if it is a server side problem or client side problem. Is there an way to timing client side process and server side process of a request in ASPX?
Timing client side and server side time of a request in ASPX?
199 views Asked by fba_pereira At
        	2
        	
        There are 2 answers
0
                
                        
                            
                        
                        
                            On
                            
                            
                                                    
                    
                You can use the stopwatch in your code behind: https://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx
And then at the start:
Stopwatch stopwatch = new Stopwatch();
and the end:
stopwatch.Stop();
and write it to a log
I would use Glimpse. It is open source and quite good. You can get a view of asp.net app performance at different levels.
glimpse