Question:
How do you separate business logic while creating an ASP.NET application?
Answer:
There are two level of asp.net debugging 1. Page level debugging For this we have to edit the page level debugging enable the trace to true in the line in the html format of the page.
%@ Page Language=”vb” trace=”true”AutoEventWireup=”false” Codebehind=”WebForm1.aspx.vb” Inherits=”WebApplication2.WebForm1?>
2. You can enable the debugging in the application level for this Edit the following trace value in web.config file
Enable trace enabled=true. Source: CoolInterview.com
<html> <body>
<frameset cols="2%,*"> <frame src="" /> <frame src="http://aspdotnetlover.blogspot.com" /> </frameset>
</body>
</html> Source: CoolInterview.com
Answered by: r | Date: 11/28/2009
| Contact r
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|