What is the Difference between Web.config and global.asax?
Can we write connection String code in global.asax?
Answer Posted / nidhi
Global.asax files allows you to executing ASP.Net application level events and setting application level variable.
The web.config file uses a predefined XML format. The entire content of the file is nested in a
root <configuration> element.
We can create more than one web.config file but we can't have more than one Global.asax file.
Yes we can write connection string in Global.asax file.
First store connection string in web.config file and fetch
in a Global.asax file using below code.
In global.asax
Application["VariableName"] = ConfigurationManager.ConnectionStrings["ConnStr"].
ConnectionString;
Now to fetch the value from applictaion variable
string conn = Application["VariableName"].ToString();
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is base class of button control in .net?
Describe how passport authentication works.
What is the procedure to create the environment for asp.net? : asp.net mvc
How are sessions stored?
What are sessions used for?
What is slidemaster?
How can you pass multiple complex types in Web API?
What is a server farm in iis?
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?
Is asp.net easy to learn?
What is the difference between ASP Session State and ASP.Net Session State?
Explain the steps to be followed to use passport authentication.
What is event bubbling?
What are the layouts of ASP.NET Pages?