Category Archives: ASP.NET

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

MVC ASP.NET interview question: -What is the difference between tempdata ,viewdata and viewbag?

Temp data: -Helps to maintain data when you move from one controller to other controller or from one action to other action. In other words when you redirect,“tempdata” helps to maintain data between those redirects. It internally uses session variables. … Continue reading

Posted in .net, .Net Interview Questions, ASP.NET, C# interview questions, Csharp interview questions, MVC, programming interview questions | Tagged , , , , , , | 1 Comment

C# and WCF interview question:- What is the difference between Remoting,Web services and WCF services ?

I have lost count of how many times this has been asked in WCF interviews. So the first thing is WCF is a combination of Web service + remoting + MSMQ + COM plus. The above question is taken from … Continue reading

Posted in .NET and C# training, .Net Interview Questions, ASP.NET, C# interview questions, Csharp interview questions, programming interview questions, Remoting, WCF, WCF services, Web services | Tagged , , , , , , , , | Leave a comment

ASP.NET MVC (Model view controller) interview questions and answers: – What is the latest version of MVC and what is the difference between each version?

In case you are new to MVC start learning by click on this video learn MVC step by step. When this note was written, four versions where released of MVC. MVC 1 , MVC 2, MVC 3 and MVC 4. … Continue reading

Posted in .Net Interview Questions, ASP.NET, C# interview questions, Csharp interview questions, MVC (Model view controller), MVC interview questions and answers, programming interview questions, SQL Server | Tagged , , , , , , , | 1 Comment

ASP.NET MVC Interview questions :- What is the difference between tempdata , viewdata and viewbag?

Temp data: – Helps to maintain data when you move from one controller to other controller or from one action to other action. In other words when you redirect, “tempdata” helps to maintain data between those redirects. It internally uses … Continue reading

Posted in .NET and C# training, ASP.NET, Csharp interview questions, MVC Interview questions, programming interview questions, tempdata, viewbag, viewdata | 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

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: – 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