Category: ASP.NET

  • Series 1: Unveiling Canarys Copy Project

    Revolutionizing Azure DevOps Migrations with Canarys Copy Project Have you ever wished for a magic wand that could effortlessly copy teams, groups, team members, group users, iterations, areas, team settings, board settings, boards, work items, test plans, suites, repositories, pipelines, builds, releases, and even delivery plans? In the ever-evolving landscape of DevOps, the need for…

  • .Net Framework to .NET (.Net Core) Migration

    In this article, we will discuss about the things we should consider when migrating code from .NET Framework to .NET. The Migration of project from .NET Framework to .NET is relatively a straightforward task but the complexity of the project determines how much effort is involved after the initial migration.Applications which are created on .NET…

  • Entity Framework CodeFirst Approach

    Entity Framework Code First Approach   Entity Framework is an enhancement to an existing ADO.Net technique and ORM framework we used for Microsoft technologies. The Entity framework is an object-relation mapper, means it takes the structure of the database and turns it into objects that the .Net framework can understand. Developers use those object to interact…

  • Using XMPP and Openfire server in ASP.NET C# – Part -1

    Extensible Messaging and Presence Protocol (XMPP) The Extensible Messaging and Presence Protocol (XMPP) is a protocol for streaming XML elements in order to exchange messages and presence information. The XMPP Core uses main features like XML Streams TLS SASL IM The basic functionality expected of XMPP is instant messaging (IM) and for user presence in…

  • ASP.NET: Audit Trail Implementation using Entity Framework

    When you are working with certain projects which involves the Customer records, you might need to track of each and every addition/change made to system along with who create, modify and delete the records.  Here I am going to show you how to implement the Audit Trail using Entity Framework in ASP.NET. Entity Framework keeps…

  • ELMAH Integration in ASP.NET MVC Application

    ELMAH (Error Logging Modules And Handlers) What is ELMAH? ELMAH (Error Logging Modules and Handlers) is a series of HTTP modules and an HTTP handler that may be added to your ASP.NET web applications for the purpose of tracking unhandled exceptions. ELMAH provides access to view these errors by way of a web console, email notifications.…

  • Part 2 of KnockOut.js in Asp.Net

    Computed Observables:                                             Functions which are dependent on one or more observables and will automatically update whenever any of the dependencies altered. Eg: If we want to display full name based on first name and last name then Step 1: Declare view model  function AppViewModel() {  this.firstName = ko.observable(‘Naresh’);   this.lastName = ko.observable('Reddy'); } Step…

  • Introduction to KnockOut.Js in Asp.Net

    What is KnockOut.Js? Knockout.Js (simply KO) is a powerful JavaScript library which allows developers to bind DOM elements with any data model like array, Json etc. It built up on two way data binding between UI and data model i.e. if any changes made to data model are affected to UI as well as any…

  • Introduction to Amazon S3 (Simple Storage Service) and EC2 (Elastic Cloud Computing) in Asp.Net

  • How to use Model Binding with ASP.NET Data Controls

    Introduction ASP.NET 4.5 provides a flexible alternative to server data controls called as, Model Binding. Using the new data model binding, you can directly use methods instead of data source to perform CRUD operations. In this article I will explain in detail how we can implement Model Data Binding with ASP.NET data controls. Here I…