Get Free Job Alerts on your Mobile by SMS- Subscribe now
.Net interview questions and answers home
What is ASP.Net? What are the advantages ASP.Net Technologies?
ASP.Net is a server side Technology to develop a web based applications.ASP.Net will make use of .Net framework features.
Advantages of ASP.Net
- ASP.NET makes development simpler and easier to maintain with an event-driven, server-side programming model
- ASP.NET offers built-in security features through windows authentication or other authentication methods.
- Content and program logic are separated which reduces the inconveniences of program maintenance.
- Built-in caching features.
What are different stages of ASP.Net Page Life cycle?
Each ASP.Net Web page performs following stages/events
- Page Initialization (Page_Init event)
- Page Loading (Page_Load event)
- Page Prerender (Page_Prerender)
- Page Render (Page_Render)
- Page Unload (Page_Unload)
Visit following link for more information at ASP.Net Page Life Cycle
How do you validate Input data on web page?
Before submitting a web page to server, Input validation on web page is one of the important task.ASP.Net provides below validation controls to validate data in web controls and shows user friendly Messages to the user.
ASP.Net validation Controls
- Required field validator control
- Compare validator control
- Range Validator Control
ASP.Net Interview Questions and answers on validation Controls
what are the different state management techniques in ASP.Net?
Asp.Net state management can be maintained in two ways as below
Client- Side State Management
ASP.Net provides following techniques to store state information. This will improve application performance by minimizing server resource utilization
1.View state
2. Hidden Fields
3. Cookies
4. Query Strings
Server – Side State Management
With respect to Server Side State Management ASP.Net uses “Application state” and “Session state” objects to store data or user state.
What are the differences between custom Web control and user control?
Custom Web control is a control that inherits from web server control available in ASP.Net.
A Custom Web Control could be compiled into separate .dll file. This custom Web control can be shared across all application by installing this dll in to Global Assembly Catch.
User Control is a file (.ascx file) that contains a set of ASP.Net controls and code grouped together to provide common functionality across the application. User control can be used on different web pages of the application.
Explain ASP.Net Catching? What are different catching mechanisms available in ASP.Net?
ASP.Net catching one of the important performance factor for large web applications.
ASP.Net Catching stores frequently accessed data in to catch object.
There are two different types catching in ASP.Net
1.Application Catching
2.Page Output Catching
.Net interview questions and answers home
Tags:asp.net faq, asp.net features, asp.net for beginners, asp.net interview questions and answers for freshers


thanks
Thank’s for sharing valuable information,it’s help to me.
Please send asp.net important interview question and answer.
kindly send question for asp and ado. net question for my interview i am fresher
Sir am in final b.tech(IT).so please send asp.net interview questions.
Can you send me the full asp.net interview questions.
Please send me all Asp.net interview question ?
its really helpful for the purpose of cracking the interview.
Basic questions helps to lead forward thanx for all
Very useful for interview preparations…thank you .keep on collecting more questions
good questions.thanx
Good question but it are few please give more
gud questions, Thank you.
can you please give us the programming questions and answers.
nice sir/madam good questions, thanks
Very useful for interview preparations…thank you .keep on collecting more questions
good help here thanks!
Nice Answered.
Thanks
good Questions thanks.
A good bunch of questions keep it up
Thank you
What is the root class in .Net ?
Object is the base class of all classes declared in .net
If a class was declared without any explicit inheritance, then implicitly it was inherited from object class in System namespace.