What is the difference between Trace and Debug?
Answer Posted / rajeev.varshney5
Trace & Debug :
Debug : When the Developer works on the Project and Solve the Problem of Error at the perticuler time by the help of F10 & F11. and We can say that Debugging is the process of
finding & fixing errors in our program.
Tracing : Tracing is the process of collecting Information of program's execution. Or We can say that tracing is used to see the Diagnostic Information (Troubleshooting Information) that contains the Session, Execution time,Http..etc...
Tracing is two types..
1)Page Leve Tracing.
2) Application Level Tracing.
1) Page Level Tracing : It contain the Diagonstic information of a perticular page..it can be done by the help of Trace=true;
if(Request.QueryString["trace']=="true")
{
Trace.IsEnabled=True;
}
2) Application Level : When we don't have information that Which page contains the Error then We used Application Level Tracing.
It contains the following Property.
1) enabled=True;
2) pageOutput="true"
3)RequestLimit=10
4)TraceMode=SortByTime
5) LocalOnly=false;
6) MostRecent=false;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is advantage of asp.net?
What is postback pixel?
What is view state management in asp net?
Describe the application event handlers in ASP.NET?
What is difference between viewstate and session in asp net?
Why web api is better than wcf?
Can you change a master page dynamically at runtime? How?
What is another word for redirect?
Explain Features in ASP.NET
What is a SESSION and APPLICATION object?
Define view state.
Suppose you want an asp.net function (client side) executed on the mouseover event of a button. Where do you add an event handler?
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
What do you mean by View State and what is its role?
What is mvc in asp.net tutorial? : Asp.Net MVC