Author: admin

  • Blog
  • Author: admin

What is AJAX?

Web application are getting popular in all over the world. Most of the desktop applications are transforming in web base application and with the new technology like Ajax we can build the great user interfaces just like the desktop application. Ajax is one of hottest technology in today’s world . I have found great articles

How to use NancyFx with ASP.NET Core Application

In this blog post, we are going to learn how we can use Nancy framework with ASP.NET Core Application. NancyFx is a lightweight, low-ceremony framework for building HTTP based services on .NET and Mono. It is inspired by Sintara Framework for Ruby and hence Nancy was named after the daughter of Frank Sintara. Nancy Framework

How to upgrade your ASP.NET Core application from 1.0 to 1.1

In this blog, We are going to learn how we can upgrade your ASP.NET Core application from 1.0 to 1.1.  Now Microsoft has release 1.1 before few months, So in this blog, we will see how you can upgrade your ASP.NET 1.0 application to ASP.NET 1.1 core application. You can download 1.1 SDK and Tools

C#.NET Business Logic Layer Class example

//here is the example of business logica layer class public class UserBll{#region Private Memebersprivate DashBoardData.UserData _objUserData;private DashBoardCollection.UserCollection _objUserCol;#endregion#region Methodspublic UserBll(){}public UserBll(DashBoardCollection.UserCollection obj){_objUserCol = obj;}#endregion#region Methodspublic void Add(){_objUserData = new DashBoardData.UserData(this._objUserCol);_objUserData.Operation(DashBoardData.OpertaionType.Add);}public void Update(){_objUserData = new DashBoardData.UserData(this._objUserCol);_objUserData.Operation(DashBoardData.OpertaionType.Update);}public void Delete(){_objUserData = new DashBoardData.UserData(this._objUserCol);_objUserData.Operation(DashBoardData.OpertaionType.Delete);}public Boolean CheckUserLogin(){_objUserData = new DashBoardData.UserData(this._objUserCol);return _objUserData.CheckUserLogin();}#endregion }