Friday, December 25, 2020

What is/are the predefined TraceListener(s) in ASP.Net?

 Options

- TextWriterTraceListener
- EventLogTraceListener
- DefaultTraceListener
- All the above 1, 2,3


CORRECT ANSWER : All the above 1, 2,3

No comments:

Post a Comment

Get max value for identity column without a table scan

  You can use   IDENT_CURRENT   to look up the last identity value to be inserted, e.g. IDENT_CURRENT( 'MyTable' ) However, be caut...