skip to main
|
skip to sidebar
Welcome Visitor to Tech-Interviews
This site will help you clear technical interviews
Pages
Home
Contact Us
What is authentication and different types of ASP.NET authentication ?
Authentication is process of obtaining credentials such as username and password and validating the credentials.
There are 3 types of ASP.NET authentication :
Windows authentication
Form authentication
Passport authentication
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
How are indexer declared ?
Below is indexer declaration : modifier return type this [argument list] { get { // Get codes goes here } set { // Set codes goes h...
Difference between indexer and property ?
1. An indexer is identified by it's signature. But a property is identified it's name. 2. An indexer is always an instance member,...
How do I add public events for Httpmodule in Global.asax ?
You can add public events for Httpmodule using below syntax i.e ModuleName_OnEventName in Global.asax . Example Session_OnStart ( Obj...
How to create Custom HTTP module ?
The steps to create custom HTTP module are : Implement IHttpModule Interface Handle Init Method and register events one needs Handle t...
Comparison of Usage of Delegate and Interface ?
Use a delegate when: An eventing design pattern is used. • It is desirable to encapsulate a static method. The caller has no need access o...
How to make SQLServer session mode work ?
Please do below steps to make SQLServer session mode to work properly : 1. To use SQLServer mode, you must first be sure the ASP.NET sessi...
What are different access modifiers/specifiers in C# ?
Different access modifiers/specifiers in C# : Public - Any class or assembly can access Protected - Access is limited to the containing ...
What is Replication in SQL ?
Replication is the way to keep data synchronised in multiple datbases. SQL Replication consists of two important part : Publisher - Datab...
What are various OOPs concept that C# supports?
OOPs concepts that C# supports are : Abstraction : is a process that involves identifying the crucial behavior of an object and eliminatin...
How would you implement delegate calling a method ?
public class Operation { public int Add ( int a , int b ) { return (a+b); } } We have to call above method using delegate Steps below : D...
Total Pageviews
Subscribe to Tech-Interviews by Email
Subscribe to Tech-Interviews
.NET Interview Questions
Home
.NET Framework
ASP.NET
C#
ADO.NET
OOPs
XML
SQL Server
Javascript
AJAX
Web Services
WCF
UML
Design Patterns
SSIS
SSRS
Project Management
LINQ
COM Components
ORACLE
UNIX Interview Questions
UNIX shell scripts
Important Links
C# 3.0 Enhancements
CLR stands for
Executive Openings at $100K & Up!
Subscribe To
Posts
Atom
Posts
Comments
Atom
Comments
No comments:
Post a Comment