Describe the difference between inline and code behind
which is best in a loosely coupled solution?
Answer / kirti
ASP.NET supports two modes of page development: Page logic code that is written inside runat="server"> blocks within an .aspx file and dynamically compiled the first time the page is requested on the server. Page logic code that is written within an external class that is compiled prior to deployment on a server and linked ""behind"" the .aspx file at run time.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is shared and repeatable inheritance?
Is do-it (chennai) a good institute to learn dot-net???? are the trainers well experienced??
If I am writing in a language like vb or c++, what are the procedures to be followed to support .net?
Is .NET a runtime service or a development platform?
How anonymous method is different from a lambda expression?
Explain re-clarification of object based in .net?
What is interface and abstract class in .net?
What is the Difference between directcast and ctype?
Will it go to finally block if there is no exception happened?
differance between checkbox and rediobutton in vb.net?
In Mvc Architecure what is view?
DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12