PROGRAM AREA
Statistics
The Highest Post
Statistics
Count
94
Avg
21.00
Min
21
Max
21
Details
Peter Agyekum
You have to log the data into database if your session times out. Which event will you use?
Options - Session_End - Application_End - Application_Start - Application_SessionTimeout CORRECT ANSWER : Session_End
New Post
Related Topics
AspWebForm
First Name
PostDate
Question # 5 What is the full meaning of ASP Net?
Question # 7 What is ASP short for?
Question # 8 What is the difference between C# and .NET?
Question # 9 What is the difference between ASP and ASP NET?
Question # 10 Is asp net a programming language or framework?
Question # 11 Can you use C# without .net?
Question # 12 What are the advantages of ASP Net?
What is a web farm?
What is web garden?
What is a Web pool?
What is the use of worker process in asp net?
What is the application pool?
How does the IIS work?
What is the difference between trace and debug in asp.net?
Explain different types of validators in ASP.NET?
How many types of session state management options available in ASP.NET?
What are the page life cycle events?
How many types of cookies are there in ASP.NET?
There are the following two types of validation in ASP.NET
What does “PostBack” mean in ASP.NET?
Explain the ASP.NET page life cycle in brief.
What's the use of Response.Output.Write()?
In which event of page cycle is the ViewState available?
What is the difference between Server.Transfer and Response.Redirect?
From which base class all Web Forms are inherited?
Which validator control you use if you need to make sure the values in two different controls matched?
What is ViewState?
Where the viewstate is stored after the page postback?
How long the items in ViewState exists?
What are the different Session state management options available in ASP.NET?
How you can add an event handler?
Which type if caching will be used if we want to cache the portion of a page instead of whole page?
Can we have a web application running without web.Config file? Yes
Is it possible to create web application with both webforms and mvc?
How can we prevent browser from caching an ASPX page?
What is the good practice to implement validations in aspx page?
What are the event handlers that we can have in Global.asax file?
Can we have multiple web config files for an asp.net application?
What is the difference between web config and machine config?
What is Cross Page Posting?
What is RedirectPermanent in ASP.Net?
Explain the working of passport authentication.
What are the asp.net Security Controls?
In which event are the controls fully loaded?
How we can force all the validation controls to run?
List all templates of the Repeater control.
List the major built-in objects in ASP.NET?
What is the appSettings Section in the web.config file?
What is the difference between an HtmlInputCheckBox control and an HtmlInputRadioButton control?
Which namespaces are necessary to create a localized application?
What is the file extension of web service?
What are the components of ADO.NET?
What is the difference between ExecuteScalar and ExecuteNonQuery?
What is __ viewstate?
How do we identify that the page is Postback? Options
_________ allows executing ASP.NET application level events and setting application-level variables. Options
____ file apply settings to all ASP.NET applications Options
In case of _______________, there is a round trip and hence puts a load on server. Options
Which one of the following has a parameter called as "preserveForm"?
_______________ is verifying the identity of a user.
Which authentication method allows anyone to access the ASP.NET application and that IIS doesn’t perform any authentication?
ASP.NET doesn’t run by itself, it runs inside the process of IIS
From performance point of view which is the fastest:
____________event is fired just before an application is destroyed.
How can we force all the validation control to run?
Which one of the class contains the objects that we use to connect to a data source via an OLE-DB provider?
______________object can hold more than one rowset from the same data source and the relationships between them.
Which method of command object doesn’t return any row?
Where do we store connection string in ASP.NET?
Which type of caching is good if the website is fairly static?
From which class global.asax file derived?
In which mode of storing ASP.NET session, session state is serialized and stored in a separate process?
Where is the viewstate information stored?
_________________ directive informs the compiler of any custom server control added to the page.
How many readers can simultaneously read data with ReaderWriterLock if there is no writer lock apply?
Which of the following are value types?
Which of the following are reference types?
From the following which works client side ?
From the following which works server side?
Application_Start event is available in which file ?
You have to log the data into database if your session times out. Which event will you use?
Which of the following is true when referencing master page from content page?
If you are using Webparts in your web page then which control is necessary?
What component do you need to enable for a user to add new web parts ?
Which of the following are required to enable users to change the title of web part ?
Which of the following is true ?
If you are using the DataSet and you have to display the data in sorted order what will you do?
What data types do the Range Validator control support?
If you are using user control in ASP.NET page which directive will be used?
A web application can contain.....?
What is the last event of web page life cycle ?
ByDefault ASP.Net SessionID is stored in
When the garbage collector runs.
How do we ensure encrypted communication over the internet in ASP.NET?
Paybill.aspx file is used to collect customer contact information like name, address phone no and credit card details. User can select change address option. If user selects changes address option then changeaddress.aspx page will be called after submitting page paybill.aspx. There isn’t any user interface on changeaddress.aspx. After processing changeaddress.aspx page, success message will be displayed on paybill.aspx. we need to write one line of code to process changeaddress.aspx page. This line should be:
From a dataview dv who has a column “EmpNo” from employee table, how will u bind a textbox
From a dataview dv who has a column “EmpNo” from employee table, how will u bind a textbox?
The uniqueId that gets generated at the start of the Session is stored in
What property is used on the datatable to indicate conflicts after update method is called?
The page class file is generated when:
You need to encrypt the SOAP header. What is the correct method to use?
DataSet supports which type of Architecture?
1. Which of the following object is not an ASP component?
. The first event triggers in an aspx page is.
Difference between Response.Write() andResponse.Output.Write().
Which of the following method must be overridden in a custom control?
An alternative way of displaying text on web page using
Why is Global.asax is used?
Which of the following is not a member of ADODBCommand object?
Which DLL translate XML to SQL in IIS?
Default Session data is stored in ASP.Net.
Which of the following is the way to monitor the web application?
The ________________ property affects how the .Net Framework handles dates, currencies, sorting and formatting issues.
Where do we include the user lists for windows authentication?
. Where do we include the user lists for Form authentication?
. Where do we include the user lists for Form authentication?
____________is the first method that is fired during the page load.
What namespace does the Web page belong in the .NET Framework class hierarchy?
______________ is the DataType return in IsPostback property.
Name the ASP.NET object that is used to get information about the web servers.
Which one of the following is used to validate an e-mail address pattern?
Explain the significance of Server .MapPath?
Explain the significance of Server .MapPath?
For separating server-side code from client-side code on a ASP.NET page, what programming model should you use?
What ASP.NET object encapsulates the state of the client and the browser?
You need to store state data that is accessible to any user who connects to your Web application. Which object should you use?
What is the difference between synchronous postback and asynchronous postback?