What?s the difference between Codebehind="MyCode.aspx.cs"
andSrc="MyCode.aspx.cs"?
Answers were Sorted based on User's Feedback
Answer / guest
CodeBehind is relevant to Visual Studio.NET only
Is This Answer Correct ? | 17 Yes | 2 No |
Answer / gautam
CodeBehind is relevant to Visual Studio.NET only
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / duryodhan
code behind is created through assembly that's defined in bin
folder and src is definded in outward of bin folder that is not making dll and .exe file.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sundherrajan
Code All build Assembly is placed inside the bin folder
Src the source cs file/vb fiel is placed in the source
folder and the source file is complied and assembly is
placed inside bin folder during runtime of the aspx page
Is This Answer Correct ? | 9 Yes | 6 No |
Answer / venkat
Visual Studio uses the Code behind attribute to distinguish the page source or programming logic from the design. Also the src attribute will make the page compile on every request. That is the page will not be compiled in advance and stored in the bin as a dll instead it will be compiled at run time.
Is This Answer Correct ? | 0 Yes | 0 No |
what is the purpose of update panel control in ajax?
how to update data using store procedure
What is the roll of JIT in asp.net?
What are sql notifications and sql invalidations?
Describe the diffeerence between inline and code behind - which is best in a loosely coupled solution?
How many rules are there regarding a well formed XML document? a) Nine b) Three c) Six d) Two
What are the type of session in Asp.Net
What does passport and windows authentication mean in ASP.NET?
Does JITting occur per-assembly or per-method? How does this affect the working set?
What is difference between asp.net and asp?
What is a PostBack ?
What are tuples?