Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the Global.asax used for?

Answers were Sorted based on User's Feedback



What is the Global.asax used for?..

Answer / ganesh

The Global.asax (including the Global.asax.cs file) is used
to implement application and session level events.

Is This Answer Correct ?    16 Yes 0 No

What is the Global.asax used for?..

Answer / guest

In that include all session and application leavel events
like application_start,application_end,session_start etc

Is This Answer Correct ?    11 Yes 1 No

What is the Global.asax used for?..

Answer / shafi syed

Global.asax is use to implement Application and Session
level Events and those events are:

APPLICATION_START.
APPLICATION_END.
SESSION_START.
SESSION_END.

Is This Answer Correct ?    7 Yes 0 No

What is the Global.asax used for?..

Answer / brijesh

The Global.asax is used to handle Application and session
lavel event.

Is This Answer Correct ?    7 Yes 2 No

What is the Global.asax used for?..

Answer / rajesh

Global.asax is use to implement Application and Session
level Events and those events are:

1. Application_Start()
2. Application_End()
3. Application_Error()
4. Session_Start()
5. Session_End()

1. Application_Start() is executed when the application is
loaded into the webserver ie, when the whole web
application starts.It is global across all the users
visiting the website.Any kind of initialization logic can
be placed in this event.

2.It is used to perform release kind of activities like
releasing resources etc.

3.This event is executed when an error is occured and the
developer hasn`t written appropiate exception handling code.

4.This event is specific for each user`s session , ie this
event executes for each time for different users visiting
the website.Each User has his own session created for him
when he visits the website , a session_id is created for
him and is stored in the browsers cache and the same id is
used to recognise the user when he visits the website next
time.Can place initialization logic when the session starts.

5.Same as Application_End(), used for release kind of
activities, but this event is specific for each user`s
session.

Is This Answer Correct ?    5 Yes 0 No

What is the Global.asax used for?..

Answer / chaitali

Global.asax is use for define the global variable.

Is This Answer Correct ?    4 Yes 0 No

What is the Global.asax used for?..

Answer / vinod

Global.asax file is used to trap the application level events.

Is This Answer Correct ?    3 Yes 0 No

What is the Global.asax used for?..

Answer / ramesh reddy

what is difference between global.asax.cs and global.asax?.
what is the use of "Bin" folder used in asp.net application?

Is This Answer Correct ?    2 Yes 0 No

What is the Global.asax used for?..

Answer / navin.cp

It is used to establish a connection or session between
client and server.

Is This Answer Correct ?    6 Yes 8 No

Post New Answer

More ASP.NET Interview Questions

What is web.config and machine.config ?

1 Answers   Patni,


Define a multilingual website?

0 Answers  


How to manage different kinds of sessions in ASP.NET?

0 Answers   Cap Gemini,


In a Repeater control how one can provide an alternating color scheme ?

0 Answers   Siebel,


I M working in 1.1 .net framework. In a page I have 5 text box & 2 data grid. In PageLoad() All text box will populate with blank value & 1st dataGrid with some value. When I click on EDIT button Of the 1st dataGrid,The Relevent data Of the particular row will populate in first 3 textboxs & corresponding relevent data Will populate in the 2nd DataGrid. Now when I click 2nd datagrid's EDIT button of a perticular Row,relevent data will populate on last 2 textboxs & 1st 3 textbox's value will be same as per as it was........ ........My Problem Is ........... When I click on edit button Of 2nd DataGrid, 1st 3 text boxes values goes Off & 2nd DataGrid Is goes off Due to Postback.but The relevent value is populated In last 2 textboxes.So How I stoped this postback??So that all the data in 1st 3 textboxes will be same.So that I can edit the values of 2nd Grid with 1st 3 textBoxes value.. plz dirctly mail me 1 copy of post to... maloy.adhikari@in.com

2 Answers  


What are the various types of authentication?

1 Answers  


Your ASP.NET application displays sales data on a page. You want to improve performance by holding the page in memory on the server for one hour. You want to ensure that the page is flushed from memory after one hour, and that the page is re-created when the next request for the page is received. What should you do? A . Initialize a new instance of the Cache class in the Application.Start event handler. B . Initialize a new instance of the Timer class in the Page.Load event handler. C . Set the Duration attribute of the OutputCache directive in the page. D . In the Web.config file, set the timeout attribute of the sessionState element.

5 Answers   ADITI, Syntax Softtech,


What is parse in asp.net?

0 Answers  


when the threads are used in dot net.

2 Answers  


How Session use Cookies in State Management?

0 Answers  


What is virtual directory in asp.net?

0 Answers  


What is query string?

0 Answers  


Categories