What is custom tag in web.config ?
Answer Posted / chauhan rakesh botad
Custom tag allows you to create your own tag and specify key
value pair for it.
Providing a new header information in which you can store up
your customized information. So that, by parsing appropriate
tags you can retrieve the values in run time.
To add a custom tag to Web.config you need to first
explicitly specify the new tag name in Web.config via the
<configSections> tag
<appSettings>
<add key=”Name” value=”Rakesh Chauhan”/>
<add key=”Address” value=”Botad, Gujarat” />
<add key=”Contact” value=”chauhan.rakesh514@gmail.com” />
</appSettings>
| Is This Answer Correct ? | 9 Yes | 4 No |
Post New Answer View All Answers
What is difference between session and application in asp net?
When cookie will expire?
What are cookies in asp.net?
Explain the difference between overriding and overloading?
Define machine.config in .net?
What is the maximum amount of memory any single process on windows can address?
Is it possible to develop a single web application using ASP.NET webforms and ASP.MVC?
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
what is AutoEventWireUp and what is the use of This property explain in details?
Explain how cookies work. Give an example of cookie abuse.
Define view state.
Define page output caching?
Is a dll file an executable?
What is the difference between asp.net and mvc?
Explain the difference between inline and code behind - which is best in?