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
Tag: ASP.NET (All)
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 05)
Microsoft Student Partner (MSP) Capacity Build up Training (Session 05) Course Title: Object Oriented Programming with C# Venue: East West University, Dhaka, Bangladesh Date: 30 July, 2016 Speaker / Trainer: Md. Mahedee Hasan, Microsoft MVP, Visual Studio and Development Technologies Software Architect, Leadsoft Bangladesh Limited Trainer, Leads Technology Limited
Microsoft Student Partner (MSP) Capacity Build up Training (Session 04)
Microsoft Student Partner (MSP) Capacity Build up Training (Session 04) Course Title: Object Oriented Programming with C# Venue: East West University, Dhaka, Bangladesh Date: 23 July, 2016 Speaker / Trainer: Md. Mahedee Hasan, Microsoft MVP, Visual Studio and Development Technologies Software Architect, Leadsoft Bangladesh Limited Trainer, Leads Technology Limited
How to install .NET Core 1.0 for windows
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 Let’s see how to install .NET Core for windows Step 1:
Microsoft Student Partner (MSP) Capacity Build up Training (Session 03)
Microsoft Student Partner (MSP) Capacity Build up Training (Session 03) Course Title: Object Oriented Programming with C# Venue: East West University, Dhaka, Bangladesh Date: 25 June, 2016 Speaker / Trainer: Md. Mahedee Hasan, Microsoft MVP, Visual Studio and Development Technologies Software Architect, Leadsoft Bangladesh Limited Trainer, Leads Technology Limited.
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
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
Speech on Future career strategy.
Deliver speech on “Features and Future of ASP.NET” Organized by : Subra System Limited Venue: Northern University Auditorum
bobj is undefined
Problem Statement I have an application developed with the following tools and technologies. MS .NET Framework 4.5 SAP Crystal Report 13.5 ASP.NET Web form SQL Server 2008 R2 In deployment server the report is not displayed. Instead I found a javascript error “bobj is undefined”. But it works fine in development server. Solutions Copy aspnet_client
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 •