What is the need to give <compilation debug=true> command ?
Answer Posted / rajesh
First of all ASP.net supports both Scripting & Compiled
process.
One Asp.net page has 2 distinct coding pages.
1)HTML 2)Server Side
If we will make <complation debug=false>,then it will show
the out put, but without checking (compiling)server side
code.
If you have to write some code in .aspx page(server side)
then you must have to write <complation debug=true>.
For only HTML coding,we donot need <complation debug=true>.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What is diff. Between abstract class and an interface?
What is a web api? Which protocol is used in a web api?
How we implement web farm and web garden concept in asp.net?
How can you debug your.net application?
Explain Areas in MVC?
Explain form level validation and field level validation?
What is the difference between dispose() and finalize()?
How many types of cookies are there in asp.net?
What is the typical session identifier?
Where is asp.net view state stored?
What does ascx stand for?
Which browsers support the xmlhttprequest object?
What are the features that make asp.net more used framework? : asp.net mvc
What are the different types of Caching techniques in ASP.NET?
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?