Which is the first event of ASP.NET page, when user requests a web page ?
PreLoad
Load
Preinit
Init
SHOW ANSWERWhat is the name of the Page object’s property that determines if a Web page is being requested without data being submitted to server?
IsCallback
IsReusable
IsValid
IsPostBack
SHOW ANSWERWhich of the following statements is correct about Managed Code?
Managed code is the code that runs on top of Windows.
Managed code is the code that is written to target the services of the CLR.
Managed code is the code where resources are Garbage Collected.
Managed code is the code that is compiled by the JIT compilers.
SHOW ANSWERIn which event are the controls fully loaded?
Page_Init
Page_Load
Control events
Page_Unload events
SHOW ANSWERwhich of the following is not a .net compatible language?
C#
Vb.net
Cobol.net
Java
SHOW ANSWERWhich of the following languages can be used to write server side scripting in ASP.NET?
C-sharp |
VB |
C++ |
|
a and b |
When an .aspx page is requested from the web server, the out put will be rendered to browser in following format.
HTML |
XML |
|
WML |
JSP |
On which of the operating system below ASP.NET can run?
Windows XP Professional
Windows 2000
Both A) and B)
None of the Above
SHOW ANSWERThe method applied to change the styles of the elemets in ASP.NET webpage is…………………
Master Page
Child page
Css
None of above
SHOW ANSWERWhat is/are the advantages of master page?
It helps to display common content in multiple pages.
They allow you to centralize the common functionality of your pages so that you can make updates in just one place.
It helps to create a common page layout.
All of the above.
SHOW ANSWERWhat is/are true about master page? Choose the correct option.
You can add more than one master page in a website.
Master page can be nested.
ContentPlaceHolder control is required on a content page.
Both A and B option are correct.
SHOW ANSWERWhat is/are true about master page?
Master page contains a <%@ Master %> directive instead of the normal <%@ Page %> directive.
ContentPlaceHolder control can be added only on master page.
You can add as many ContentPlaceHolders to a Master Page as you need.
All of the above.
SHOW ANSWERWe can add same master page to more than one webform.This statement is ?
True
False
SHOW ANSWER