Friday, December 18, 2020

By default, a .Net website is configured with which of the following authentication types?

 Options

- Anonymous
- Basic
- Digest
- Integrated Windows authentication
- a and d


CORRECT ANSWER : a and d

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...