What is Image cropping? Image cropping refer to removal of some part of image Uses to improve framing and size Applied in photograph to resize image Application overview In this project, I will show image cropping of an employee phot when employee information saved and modified. Full crud operation applied in the application with image
Category: ASP.NET MVC
Building a simple application using ASP.NET Core 1.0
What is .NET Core? .NET Core is a general-purpose development platform Maintained by Microsoft and the .NET community on GitHub Its work in cross-platform, supporting Windows, macOS and Linux Can be used in device, cloud, and embedded/IoT scenarios. First release on 27 June, 2016 Application overview HRM Core an application which I will develop here.
Microsoft Student Partner (MSP) Capacity Build up Training (Session 01)
Microsoft Student Partner (MSP) Capacity Build up Training (Session 01) Course Title: Object Oriented Programming with C# Venue: East West University, Dhaka, Bangladesh Date: 28 May, 2016 Speaker / Trainer: Md. Mahedee Hasan, Microsoft MVP, Visual Studio and Development Technologies Software Architect, Leadsoft Bangladesh Limited Trainer, Leads Technology Limited
Object Oriented Programming with C# and ASP.NET MVC 5 (Batch 05)
Training Title: Object Oriented Programming with C# and ASP.NET MVC 05 Batch: 05 Duration: 104 hours Venue: Leads Technology Limited. Trainer: Md. Mahedee Hasan Microsoft MVP, Visual Studio and Development Technologies. Software Architect, Leadsoft Bangladesh Limited
CRUD and search operation in ASP.NET MVC application using partial view
What is Partial View in ASP.NET MVC?Project -> ASP.NET Web application as below Select MVC Template and click OK Step 2: Change or Add Connection String Change or Add connection string in Web.config as follows Step 3: Create model classes Create three model classes Dept, Designation and Employee as follows. Dept Class using System; using
Cascading Dropdown List in ASP.Net MVC a sample demonstration
Last couple of weeks I found a good number of requests from my trainees and some .NET developers. They request me for sample code or a demonstration of cascading dropdown list in ASP.NET MVC. That’s why, I am writing this article. Cascading dropdown list is actually a parent child dropdown list. In this article I
ASP.NET Application Performance Tuning and Scalability Improvement (Part – 1)
Every developers and customer wants his/her application performed well. But it is very tricky to improve performance of a web application. It’s actually depends on different parameter like HTML client, HTTP network, Web server, middle-tier components, database components, resource-management components, TCP/IP networks, and database servers. Sometimes performance of the application increases drastically, if you change
Introduction to OData Services using ASP.NET Web API
What is OData? OData Stands for Open Data Protocol. It is a data access protocol for the web. OData provides a uniform way to query and manipulate data sets through CRUD operations (create, read, update, and delete). OData consumption can be done across different Programming Language. ASP.NET Web API supports both OData v3 and V4.
Multiple DbContext in a single asp.net mvc applications with EF code first
Is it possible to create multiple DbContext in a single asp.net application with entity framework code first? Yes! Then, How!! This was the questions to me for a couple of weeks. Here is the simple article where you will get all answer. First, I want to say, yes it is possible to create multiple DbContext
Dependency Injection using Ninject in ASP.NET MVC
What is Dependency Injection? In software engineering, dependency injection is a software design pattern that implements inversion of control for resolving dependencies. – Wikipedia. It makes software components are loosely coupled. Advantages of Dependency Injection • Flexibility to use alternative implementation of service. • Configurable & easy to use • Make system loosely couple •
Generic Repository Pattern with ASP.NET MVC and Entity Framework
Introduction You may introduce with an Object Oriented Design Principle name DRY – Don’t repeat yourself. It is more important in Multi-tier architecture. We can use generic repository pattern to implement DRY. What is Repository Pattern? In most of the business operation we have to perform CRUD (Create, Read, Update and Delete) operation. A repository
CRUD Operation using asynchronous method in ASP.NET MVC
Introduction In .NET framework 4.5 asynchronous programming concept has been introduced. In this regard, .NET introduced two keyword async and await. It is much easier to implement than the multi-threading concept. The .NET Framework 4 introduced an asynchronous programming concept referred to as a Task and ASP.NET MVC 4 supports Task. In this article I
Uses of Dropdown list and Radio Button in ASP.NET MVC Application with Entity Framework
Introduction Dropdown list and Radio button are two very important controls for web. We frequently use it. In this article I will show you how to use dynamic dropdown list and radio button in CRUD operation. Implementation Repository Pattern with ASP.NET MVC and Entity Framework Let’s create a University Ranking application and implement Dropdown list
How to add ASP.NET MVC to a Web form application
ASP.NET MVC is very popular now a day. But we have much legacy system of ASP.NET web form. If you want to use ASP.NET MVC with legacy ASP.NET web form application. What should you do? This is not encouraged to create an application with ASP.NET web form and ASP.NET MVC together. If you need, you
Easy way to design application layout by bootstrap theme
To design layout of your web site is much more cumbersome. But you can easily design your website layout by bootstrap, you can make it responsive also. Step 1: Create a ASP.NET MVC application with empty template Open visual studio, Got to File->New->Project Select Template -> Visual C# -> Web -> ASP.NET MVC 4 Web