Category Archives: Asp.Net Interview Questions

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

30 important ASP.NET MVC interview question

This question are taken from the book .NET interview question book latest edition written by Shivprasadkoirala and published by BPB publications. What is MVC? Can you explain the complete flow of MVC? Is MVC suitable for both windows and web … Continue reading

Posted in .net, .Net Interview Questions, ASP.NET, Asp.Net Interview Questions, C# and .NET interview questions and answers, C# interview questions, Csharp interview questions, MVC, 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

ASP.NET Interview questions: – What is the difference between session and view state?

Below are three important differences between session and viewstate. ViewState Session Data storage location Browser Hidden fields On Server Accessible In the same page. Across pages Uses cookies No(NA) Yes, If cookies disabled will use URL Query string. In case … Continue reading

Posted in .NET and C# training, Asp.Net Interview Questions, Csharp interview questions, programming interview questions, session, view state | Tagged , , , , , | 1 Comment

ASP.Net Interview questions: – Elaborate differences between ‘Server.Transfer’ and ‘response.Redirect’?

Following are the major differences between them:- ‘Response. Redirect’ sends message to the browser saying it to move to some different page, while server. Transfer does not send any message to the browser but rather redirects the user directly from … Continue reading

Posted in .NET and C# training, ASP.NET, Asp.Net Interview Questions, Csharp interview questions, programming interview questions, Redirect, response, Transfer | Tagged , , , , , , , | 1 Comment

ASP.NET interview questions: – Mention differences between ASP and ASP.NET?

This is the most practical oriented ASP.NET Interview Questions which may be asked during the Interview by the Interviewer. ASP.NET new feature supports are as follows:- Better Language Support New ADO.NET Concepts have been implemented. ASP.NET supports full language (C#, … Continue reading

Posted in Asp.Net Interview Questions, ASP.NET training, Csharp interview questions, Mention differences between ASP and ASP.NET, programming interview questions | Tagged , , , , , , | Leave a comment

ASP.NET interview questions: – Elaborate in brief how the ASP.NET authentication process works?

ASP.NET does not run by itself, it runs inside the process of IIS. Therefore, there are two authentication layers, which exist in ASP.NET system. First authentication happens at the IIS level and then at the ASP.NET level depending on the … Continue reading

Posted in .NET and C# training, ASP.NET, ASP.NET authentication process works, Asp.Net Interview Questions, Csharp interview questions, programming interview questions | Tagged , , , , , , , , | Leave a comment

ASP.NET interview questions: – Will you explain benefits and limitations of using Query Strings?

A simple but most frequently asked ASP.NET interview question. A query string is information sent to the server appended to the end of a page URL. Following are the benefits of using query string for state management:- No server resources … Continue reading

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

ASP.NET Interview questions: – Explain use of session and viewstate in ASP.NET?

HTTP is a stateless protocol , session and viewstate help you to maintain states between request and response. For more information see the below video. Click for more ASP.NET Interview questions Regards, Visit for more authors’ blog on ASP.NET Interview … Continue reading

Posted in .Net Interview Questions, ASP.NET, Asp.Net Interview Questions, ASP.NET training, Csharp interview questions, programming interview questions, session, viewstate | Tagged , , , , , , , | Leave a comment

ASP.NET interview questions: – Show differences between trace and debug in ASP.NET?

There is also a fundamental difference in thinking when we want to use trace and when want to debug. Tracing is a process about getting information regarding program’s execution. On the other hand debugging is about finding errors in the … Continue reading

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