Tag Archives: Asp.Net Interview Question

ASP.NET training and interview question: – What is cross page posting?

This is most frequently asked during ASP.NET interview questionsBy default, button controls in ASP.NET pages post back to the same page that contains the button, where you can write an event handler for the post. Remember this question is fromis … Continue reading

Posted in .net, .Net Interview Questions, ASP.NET, Asp.Net Interview Questions, ASP.NET training, C# interview questions, cross page posting, Csharp interview questions, programming interview questions | Tagged , , , , , , , | Leave a comment

ASP.NET Interview Question: – How to encrypt connection string in Web.config file ( ASP.NET Training) ?

Almost 60% ASP.NET hosting’s done with third party vendors. These vendors have full access to your folder and your database. As a best practice we all store connection strings in our “web.config” file. If you are using SQL server authentication … Continue reading

Posted in Asp.Net Interview Questions, ASP.NET training, Csharp interview questions, encrypt connection string in Web.config file, programming interview questions | Tagged , , , , , | Leave a comment

C# Training: – What are various types of IIS isolation levels?

IIS has three level of isolation:- LOW (IIS process):- In this main IIS, process, and ASP.NET application run in same process. So if any one crashes the other is also affected. Example let us say (well this is not possible) … Continue reading

Posted in .NET and C# training, .Net Interview Questions, ASP.NET, C# interview questions, Csharp interview questions, IIS isolation levels, programming interview questions | Tagged , , , , , | Leave a comment

.NET interview questions: – How to parse data in Threading?

This is a semi-asked .NET interview questions and has been asked in most of the interviews to check your skills on parsing data in threading. As a senior developer you would be interested to know how exactly we can parse data … Continue reading

Posted in .NET and C# training, .Net Interview Questions, .NET interview questions and answers, Csharp interview questions, How to parse data in Threading, programming interview questions, threading | Tagged , , , , , , , | 2 Comments

ASP.NET interview questions: – How to create a Unique Code in ASP.NET?

This is one of the requirements that would come across you many a times while working on .NET projects. Some of the senior developers will find this question very easy but many of the developer friends find it difficult to … Continue reading

Posted in .NET and C# training, ASP.NET, Asp.Net Interview Questions, Csharp interview questions, How to create a Unique Code in ASP.NET, programming interview questions | Tagged , , , , , , | Leave a comment

ASP.NET interview questions: – Edit, Update and Delete of GridView in ASP.NET.

The process of making GridView Editable, Updateable and Deleteable is almost used in the entire ASP.NET project. So, making GridView Editable, Updateable and Deleteable is one of the most important aspects according to any ASP.NET project. Let’s create a simple demonstration … Continue reading

Posted in ASP.NET, Asp.Net Interview Questions, Csharp interview questions, Delete of GridView in ASP.NET, Edit, programming interview questions, Update | Tagged , , , , , , , , | 1 Comment

C# and .NET interview questions: – Explain Lambda Expression in C#?

Lambda expression: – A Lambda expression is an anonymous function that can contain expressions and statements, and can be used to create delegates or expression tree types. In simple words Lambda expression is nothing but it is an extended version … Continue reading

Posted in .NET and C# training, .Net Interview Questions, C# interview questions, Csharp interview questions, Lambda Expression in C#, programming interview questions | Tagged , , , , , , | Leave a comment

ASP.NET interview questions: – Can u explain the benefits and limitations of using Cookies?

A simple but most frequently asked ASP.NET interview question. Following are benefits of using cookies for state management:- • No server resources are required as they are stored in client. • They are light weight and simple to use Following … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Asp.Net Interview Questions, ASP.NET training, Cookies, Csharp interview questions, programming interview questions | Tagged , , , , , | Leave a comment

ASP.NET interview questions: – Define various modes of storing ASP.NET session?

• InProc: – In this mode Session, state is stored in the memory space of the Aspnet_wp.exe process. This is the default setting. If the IIS reboots or web application restarts then session state is lost. • StateServer:-In this mode … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, ASP.NET, Asp.Net Interview Questions, ASP.net session, Csharp interview questions, model, programming interview questions, storing | Tagged , , , , , , | Leave a comment

ASP.NET interview questions :- How does ASP.NET page life cycle actually work?

In ASP.NET page life the first event which runs is Init , the load , validate , any ui events like button click and finally render. Remember the word SILVER (Init , Load , Validate , Event and Render) , … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, ASP.NET, ASP.NET interview question, Csharp interview questions, page life cycle, programming interview questions | Tagged , , , , , , | 1 Comment