I have an ASP.NET application. I have a page loaded from server memory. At this instance which of the following methods gets fired ?
(A) Load()
(B) Unload( )
(C) PreRender( )
(D) None of the Above
You need to store state data that is accessible to any user who connects to your Web application. Which object should you use ?
(A) Response.ViewState
(B) Response.Cookies
(C) Session
(D) Application
What namespace does the Web page belong in the .NET Framework class hierarchy ?
(A) System.Windows.Page
(B) System.Web.page
(C) System.web.UI.Page
(D) None of these
Which of the following transfer execution directly to another page ?
(A) Response.Redirect
(B) Server.Transfer
(C) Both A and B
(D) None of these
____________ is a special subfolder within the windows folder that stores the shared .NET component?
(A) GAC
(B) Root
(C) /bin
(D) None of these
Select the type Processing model that asp.net simulate ?
(A) Static
(B) Linear
(C) Topdown
(D) Event-driven
How do you register a user control ?
(A) Add Source, Tag prefix
(B) Add Tag prefix, Tag name
(C) Add Src, Tagprefix, Tagname
(D) None of these
Which method do you invoke on the DataAdapter control to load your generated dataset with data ?
(A) DataBind
(B) DataList
(C) Fill( )
(D) Load ( )