Archive for March 2017
3 layer architecture

Create website- ASP Project
Create class library - BAL
Create class library - DAL
Add references as below:
BAL in ASP Project
DAL in BAL
Adding class:
Right click on dal project
add class with name as DUser.cs
Make class as public bcoz it is.
Developer Unit Testing

Unit testing is done by the developer to check your code is working as expected or not.
It is called unit testing as the developed functionality is tested individuals as small units.
Visual Studio Test Explorer is used to find the list of unit test.
Interview Questions

Fresher:
Add your strengths at the top of the resume. Try you add your extra curricular activities and awards information along with academic achievements.
If your academic records are not good then add your technical skills above your academic information.
Your.
About AngularJS

AngularJs is a JavaScript framework used to build web applications. It is a free source developed by Google.
Advantages:
Dependency injection
Two way data binding
Supports clean MVC architecture
Controlling DOM.
http://angularjs.org/ - Link to download.
ASP.NET Displaying Online Users Count and Page Views - Application state in Global.asax

ASP Source code:
<p>
Online User:
<asp:Label ID="lblOnline" runat="server" Text="0"></asp:Label>
</p>
<p>
.