Asp.Net Interview Questions and Answers Pdf - 2

Question: 6

What are the layouts of ASP.NET Pages?

GridLayout and FlowLayout.

GridLayout positions the form object on absolute x and y co-ordinates of the screen.

FlowLayout positions the form objects relative to each other.

Question: 7

Where on the Internet would you look for Web services?

http://www.uddi.org

Question: 8

What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services?

Remoting is a more efficient communication exchange when you can control both ends of the application involved in the communication process.

Web Services provide an open-protocol-based exchange of information.

Web Services are best when you need to communicate with an external organization or another (non-.NET) technology.

Question: 9

Does ASP.NET support server-side includes?

Yes. Server-side includes work the same in ASP.NET as they do in ASP.

Question: 10

What is a post back?

A way for the page to notify the asp.net application that some even occurred (button clicked, etc.)

Related Questions