3-Tier Architecture in asp.net using C# with Crude Operations

3-Tier Architecture in asp.net using C# with Crude Operations

3-Tier Architecture in asp.net using c# 3-Tier architecture consists of 1) UI or Presentation Layer 2) Business Access Layer or Business Logic Layer 3) Data Access Layer Presentation Layer Presentation layer consists of pages like .aspx or desktop based form where data is presented to users or getting input from users. Business Logic layer or Business Access Layer Business logic layer contains all of the business logic. Its responsibility is to validate the business rules of the component and communicating with the Data Access Layer. Business Logic Layer is the class in which we write functions that get data from Presentation Layer and send that data to database through Data Access Layer.
How to Create Profile Property through Coding in DNN

How to Create Profile Property through Coding in DNN

//Here 'Level' is the name of profile property if (DotNetNuke.Entities.Profile.ProfileController.GetPropertyDefinitionByName(this.PortalId, "Level") == null){DotNetNuke.Entities.Profile.ProfileController.AddPropertyDefinition(new DotNetNuke.Entities.Profile.ProfilePropertyDefinition(this.PortalId){PropertyName =…
Handling JSON returned from ASP.NET Web Services with JQuery

Handling JSON returned from ASP.NET Web Services with JQuery

There appear to be many articles showing how to use jQuery with ASP.NET Web Services around, but the vast majority of them illustrate the use of PageMethods that return a single value - typically "Hello World!" or the current date and time. Not much use in the real world, where you may more often need to call a service that returns a collection of complex objects. Here are a couple of examples that look at playing with more than just simple values. Follow Two Steps for Implementation Step 1: Add below section to Head Tag
Custom TextEditor with the Help Jquery in Asp.net

Custom TextEditor with the Help Jquery in Asp.net

Follow two steps for implementation Step 1: Add below section to Head Tag
Implementation of Color Box in Asp.net

Implementation of Color Box in Asp.net

Follow two steps for implementation Step 1: Add below section to Head Tag
Crude Operations using RunTime TextBoxes Controls in Asp.net

Crude Operations using RunTime TextBoxes Controls in Asp.net

Sometimes we need to create text boxes on runtime on button click and store the values from runtime textboxes in Asp.net .aspx Page------------------------------------------------------------------------ .aspx.cs Page------------------------------------------------------------------------ if (!Page.IsPostBack) { ViewState["NumberOfControls"] = NumberOfControls = 0; } else { this.createControls(); }
Show Progress Bar using JQuery in Asp.net

Show Progress Bar using JQuery in Asp.net

Step 1: