Showing posts with label ASP.NET with C#. Show all posts
Showing posts with label ASP.NET with C#. Show all posts

Explain the term authentication with respect to ASP.Net securrity.

Authentication is the process of obtaining identification credentials such as name and password from a user and validating those credentials against same authority. If the credentials are valid, the entity...

What is type casting? Explain the concept of Boxing and Unboxing.

Type casting is converting one type of data to another type. For eg., converting from string to int or vice versa. In C#, type casting has two forms: Implicit Type...

What is AJAX. How is the processing of a web page without AJAX different from the processing of a web page with AJAX?

AJAX stands for Asynchronous JavaScript and XML, which is a way of transferring data between the dedicated server hosting and client without sending the entire page, and thereby creating a...

Differentiate between overloading and overriding in C#.

Overloading Overriding Having same method name with different signatures. Methods name and signatures must be same. Overloading is the concept of compile time polymorphism. Overriding is the concept of runtime...