where is declare global variable in asp.net and what is use
of global variable

Answers were Sorted based on User's Feedback



where is declare global variable in asp.net and what is use of global variable..

Answer / sridhar

ou can use web.config to store global varriables

<appSettings>
<!-- Generic Settings -->
<add key="PDFBaseDir" value="\\server\pdfs\"/>
</appSettings>

PDFBaseDir Can be used across application

Is This Answer Correct ?    5 Yes 1 No

where is declare global variable in asp.net and what is use of global variable..

Answer / sridhar

For Classes to be generally consumable across your site you should place them in APP_CODE folder.
This simple class will provide global variable

imports Microsoft.VisualBasic
Public Class Sample
Public Shared Text as String ="Global Variable Example"
End Class

Using it in a page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
Me.Title = Sample.Text
End Sub

Is This Answer Correct ?    2 Yes 0 No

where is declare global variable in asp.net and what is use of global variable..

Answer / kinjal panchal

we can declare global variable in class file. and this
global variable we can use in whole application.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

Can you dynamically assign a Master Page?

0 Answers   MCN Solutions,


How you will improve web application performance?

0 Answers   Wipro,


what is DLL Hell and how it is solved in .NET?

24 Answers   icegen, next, -uk, NIIT,


How do you remove duplicates without using remove duplicate stage?

0 Answers  


Explain how cookies work.

0 Answers  






How do we ensure view state has not tampered?

0 Answers  


What are the disadvantages of asp.net?

0 Answers  


What is the difference between response.redirect and server.transfer, how to choose one among the other?

3 Answers   247Customer,


True or False: To test a Web service you must create a windows application or Web application to consume this service?

1 Answers  


What is base class of .net?

0 Answers  


What is a session government?

0 Answers  


What is the difference between <%#%> and <%=%>?

4 Answers   IBS,


Categories