Asp.net or Aspx Page Life Cycle Interview Question
When a user send request to the Web server, the page passes a lot of events from Initialization to Unloading. Generally an Asp.net Aspx page contains a lot of server side controls, HTML controls as...
View ArticleDifference Between Server.Transfer and Response.Redirect Asp.Net Interview...
There is a common question for developers in Asp.net interview board that “What is the difference between Response.Redirect and Server.Transfer“. In a common term we can use both to redirect the user...
View ArticleDifference Between GET and Post HTTP Methods Asp.Net Interview Question
Might be this is the first interview question by the viva board. Which is very basic and you have to explain clearly. That’s why i am trying to write the post “Basic difference between GET and POST...
View ArticleHow to Pass or Transfer Data or Parameters values from one Aspx page to...
Pass or Transfer data from one page to another page is a very common task in Web development. Specially when you develop a project, for redirects or navigates from one ASP.NET Web page to another, you...
View ArticleCross Page Posting or Postback to Transfer Data in Asp.net C# VB.Net
In Asp.net 1.1 we can postback a form itself but can’t posting back to other pages. This is a limitation of Asp.net 1.0. But from upper versions we can simulate cross page postback by using...
View ArticleBasic Introduction to Learn about HTTP Protocol
At first what is Protocol? Protocol means a way of communication between two or more parties. To connect two parties like client and server at first we need to establish a connection between them and...
View ArticleShort introduction to Learn about MIME type
MIME = Multi-purpose Internet Mail Extensions. This article will explain “What is ENC MIME type“. Its a commonly used basic viva/written interview question. MIME type is a standard way of defining file...
View ArticleWhy C# or VB.net Generics perform better than Collections – a case study with...
Generics are the most powerful feature of .NET 2.0. Generics not only allow us to define type-safe data structures but also gives us a significant performance boost and higher quality code. Collections...
View Article