Asp.Net Interview Question and Answers for Experienced
16. | What is the difference between a static web page and a dynamic web page? |
---|---|
|
|
17. | What are all the types of data types available in ASP.NET? |
---|---|
There are two types of data types available in ASP.NET
|
|
18. | Explain the types of errors? |
---|---|
|
|
19. | In what order do the events of an ASPX page execute? |
---|---|
Every Page object (which your .aspx page is) has nine events, most of which you will not have to worry about in your day to day dealings with ASP.NET. the three that you will deal with the most are:
|
|
20. | Which method do you use to redirect the user to another page without performing a round trip to the client? |
---|---|
Server.transfer() | |