I found that there are numerous posts for Assemblies but none for giving out the difference between Panel and a Group Box. Although a Panel as well as the groupbox are almost the same there are minute differences.
In group box you can enter text while you cant do that in Panel.
In Panel you have got a built in support for scrollbars which is not available in case of group box.
Hope this information is useful....Happy Programming !!!
Regards,
Raja
| RE: what is the trace in ASP.NET | |||
| Trace is a mechanism in .NET for tracing errors in the applicaton and is a part of the system.diagnostics name space. | |||
| | |||
| February 14, 2006 05:54:45 | #2 | ||
| Sumit Agarwal | |||
| RE: what is the trace in ASP.NET | |||
| Tracing makes debugging of ASP.Net page more easier & simpler displaying message during code Execution. There are two types of Tracing 1.Application Level Tracing 2.Page Level Tracing | |||
| | |||
| February 20, 2006 01:26:14 | #3 | ||
| sudhir kumar | |||
| RE: what is the trace in ASP.NET | |||
| ASP.NET introduces new functionality that allows you to view diagnostic information about a single request for an ASP.NET page simply by enabling it for your page or application. Called tracing, this feature also allows you to write debug statements directly in your code without having to remove them from your application when it is deployed to production servers. You can write variables or structures in a page, assert whether a condition is met, or simply trace through the execution path of your page or application. In order for these messages and other tracing information to be gathered and displayed, you must enable tracing for the page or application. When you enable tracing, two things occur:
Diagnostic information and tracing messages that you specify are appended to the output of the page that is sent to the requesting browser. Optionally, you can view this information from a separate trace viewer (Trace.axd) that displays trace information for every page in a given application. This information can help you to clarify errors or undesired results as ASP.NET processes a page request. Trace statements are processed and displayed only when tracing is enabled. You can control whether tracing is displayed to a page, to the trace viewer, or both. | |||
| | |||
| April 05, 2007 04:49:03 | #4 | |
| rahul | ||
| RE: what is the trace in ASP.NET | ||
| Trace in ASP.Net is nothing but to trace error. When we use this trace, we will get complete step-by-step diagnosis of our application or site. It will also give some details of the error, so that the user can easily debug the code. | ||
No comments:
Post a Comment