tags:

views:

28

answers:

1

if we want to access the one bool data type as a global web form mean what we want do in vb.net as well as c#.net(asp.net)

A: 

If i understood question correctly then you need a bool datatype which can be accessed throughout your web application for all sessions.

Application["YourBool"]= Bool's value.

In this case "YourBool" is the key by which you identify and Bools Value(true or flse)

and this value will be avalilable throughout the application for all sessions until your application is not restarted.

saurabh