Click here to Skip to main content
15,891,409 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:

<connectionStrings>
<add name="myConnectionString" connectionString="Data Source=This_PC; Initial Catalog=myDB;
Integrated Security=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<sessionState timeout="5000" cookieless="true"></sessionState>
<pages>
<controls>
<add tagName="MultipleSelector" tagPrefix="myControls"
src="~/UserControls/MultipleSelector"/>
</controls>
</pages>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
working of this code

What I have tried:

i want to know about the working of this code
Posted
Updated 23-Jun-21 22:56pm
Comments
Patrice T 24-Jun-21 4:38am    
This code is not C++
Jon McKee 24-Jun-21 4:59am    
Looks like an ASP.NET XML file.

1 solution

1) That isn't C++.
2) That isn't code.

That's part of a configuration file, specifically the web.config file that tells your web server how to treat your site.

To understand it see here: ASP.NET Web Configuration File[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900