AdminLTE Advanced (edit)
HTML, CSS, JavaScript - Frontend
https://adminlte.io/docs/2.4/js-control-sidebar
https://css-tricks.com/how-to-disable-links/
https://css-tricks.com/almanac/properties/p/pointer-events/
https://stackoverflow.com/questions/28083708/how-to-disable-clicking-inside-div
https://stackoverflow.com/questions/639815/how-to-disable-all-div-content
$(selector).find('*').unbind('click');
Selector:
https://www.freecodecamp.org/news/back-to-basics-demystifying-css-and-jquery-selectors-12d75946b8b7/
https://www.java67.com/2016/09/10-example-of-jquery-selectors-for-web.html
https://kamranahmed.info/blog/2014/08/18/event-bubbling-and-how-can-it-be-prevented/
https://www.tutorialspoint.com/How-to-select-ALL-children-in-any-level-from-a-parent-in-jQuery
https://www.kidsil.net/2011/05/jquery-click-excluding-child/
Security:
- Understanding, Using and Customizing ASP.NET Identity System for Authentication and Authorization
- Understanding ASP.NET Roles and Membership - A Beginner's Tutorial[^]
- Understanding and Implementing ASP.NET Custom Forms Authentication[^]
- A Beginner's Tutorial on Custom Forms Authentication in ASP.NET MVC Application[^]
ASP.NET Core MVC: ASP.NEThttps://studymash.com/our-courses/web-development/build-real-world-web-application-in-asp-net-core-and-mvc/?tab=tab-curriculum
Become an ASP.NET Core Developer: https://www.linkedin.com/learning/paths/become-an-aspnet-core-developer
ASP.NET Core Group Rules:
https://mvc.daypilot.org/open-source/
EF Core: https://www.yogihosting.com/category/ef-core/?ref=hackr.io (HAY HAY HAY HAY HAY)
ASP.NET MVC: https://blog.udemy.com/asp-net-mvc-tutorial/
ASP.NET MVC: http://www.tutorialsteacher.com/mvc/asp.net-mvc-tutorials
ASP.NET MVC: http://www.tutorialspoint.com/asp.net_mvc/
https://www.quora.com/Should-I-learn-ASP-Net-MVC-or-ASP-Net-Core (HAY HAY HAY)
https://www.bestdotnettraining.com/csharp-online-training (HAY HAY HAY)
https://www.quora.com/Which-is-a-better-approach-to-learn-first-ASP-NET-MVC-or-ASP-NET-with-C
C# is the mandatory skill if you want to be a web application developer in ASP.NET or ASP.NET MVC.
Here are the concepts in C#
- Strong knowledge of OOPS, popular Design Patterns(Factory, Facade, Adapter, Iterator, Observable, Chain of responsibility, Proxy, Command and Singleton ) and SOLID principle
- Generic Collection frame work List, IEnumerable, IEnumerator, IQueryable,ICollection.
- Basic knowledge about disposable mechanism, garbage collection.
- Basics of reflection, Task parallel library
- LINQ ( With Entity framework/ any collection)
Prerequisite:
- C#
- Fundamental knowledge of HTML.
- Fundamental Knowledge of CSS.
- Go ahed don't worry about asp. Net webforms but make sure to have knowledge about.
- Client and server state management techniques:
- Query string
- Session
- ApplicationState
- Cookies
Top C# Language Online Courses:
#2 C# Intermediate: Classes, Interfaces and OOP
Top ASP.NET Online Courses:
#2 ASP NET Core (ASP.NET 5),MVC 6,C#,Angular4 & EF Crash Course
Learn to build and deploy fast and secure web applications with ASP.NET MVC 5
Course Link: The Complete ASP.NET MVC 5 Course
What Will You Learn?
- Understand the MVC architectural pattern
- Implement CRUD operations
- Build forms with server-side and client-side validation
- Build RESTful services using ASP.NET Web API
- Use powerful jQuery plug-ins
- Implement authentication and authorization using ASP.NET Web API
- Use Entity Framework to query or update data
- Understand and apply security best practices
- Build and deploy applications
- Create and customize build configurations
- Manage client / server dependencies
- Test APIs using PostMan
- Use AutoMapper
Requirements to take this course:
- C# (at a minimum lambda expressions, LINQ)
- Basic familiarity with web development (HTML, CSS, JavaScript, jQuery)
ASP.NET MVC is a server-side web framework for building dynamic, data-driven web applications. Since its first release in 2009, it has gained a lot of popularity amongst developers using Microsoft technologies. If you want to get employed as a web developer at a company that utilizes Microsoft technologies, you need to master ASP.NET MVC.
By the end of watching this course, you'll be able to:
- Implement CRUD operations
- Build forms with validation
- Build RESTful services using ASP.NET Web API
- Use Entity Framework code-first workflow to build a model
- Implement security, authentication and authorization using ASP.NET Identity
- Use powerful jQuery plugins
- Optimize application's performance
- Build and deploy your applications
- And much more...
How can I become a better ASP.NET MVC Developer?
https://www.quora.com/How-can-I-become-a-better-Asp-net-Mvc-developer/answer/Jay-Prakash-214
Practice makes a man perfect..!!! You know this right, it’s universal truth. If you want to became master in ASP.NET MVC, you have to do practice, lot of practice.
Apart from that I can tell you which fields are major in MVC and you have to be more concentrate on that.
- What is MVC? - It stands for Model View Controller.Model is where we define our classes, objects, properties that will hold values to be displayed to the user.View is the User Interface or the final output that will be shown to the user.Controller is the first point that is executed when we hit a url. It basically forms the link between model and view and based on the url it determines which view is supposed to be displayed to the user.
- Folder Structure in MVC - Some important folders to look out to, when we create an MVC applicationApp_Start - This folder contains some configuration files for the entire MVC application. BundleConfig.cs, FilterConfig.cs, RouteConfig.cs are some files inside these folders. Please go in depth with these.Models - Normally all model (class) files are grouped inside this folder.Controllers - Normally all controllers are grouped inside this folder.Views - Views are clubbed inside this folder.
- Routing - A very important concept which is the root of MVC. For eg:- http://localhost:1111/Employee/G... url is hit. Routing determines, based on the url, which controller to call and which method inside that controller to execute. In above example “Employee” is the controller and “GetEmpList” will be the method mentioned inside Employee controller that needs to executed. Also, routing allows a user to create their custom user-friendly urls. These configurations are specified in RouteConfig.cs file.
- Validations - MVC provides various attribute based validations that can be applied directly over the property inside your model. Also dig into how these validations are invoked on the html page.
For eg:-[Required] public string Genre { get; set; }
- Bundling and Minification - Again very important concepts. As the name suggests bundling means to create a bundle. Let’s say, you have few related js files you want to use in your application. You mention them in your html page. So, when application is executed, these files are one by one loaded. It means, more server working. So you create a bundle of these files and specify that bundle in your html page. Run the application and your files are loaded in one go. Minification is your min.js or min.css files. They are created once you apply bundling. So please go through how to create bundle and use it in your page. The file for this is BundleConfig.cs.
- Razor - This is your view page. The extension in MVC is cshtml. Simpler to use than web forms. The syntax usage is very easy compared to web forms.
- Action Results - ActionResult is an abstract class and there are 12 types of different results derived from it. These results define the type of output that will be shown to the user. Please go in detail through them. Specially JsonResult as this will play a vital role in sending data to view using ajax.
- Knockout usage with MVC. - One of the many ways to display data from controller to view. The core knockout need not be known, but just the way to bind data from controller to view.
- ViewBag, ViewData, TempData - How to pass dynamic data between requests or from one entity to other? Hence, Presenting to you these three ways. Please go in depth with them.
- ViewModel - A concept that binds your model and view such that any change in the model reflects in the view and vice versa.
- Action Filtering - For example, when the user clicks a link, a controller and the corresponding action method is called. Sometimes, we want to perform certain logic before an action is called or during an action method is executing or after the method is done executing. Hence, MVC provides ActionFilters for that. It provides methods to process logic, in between action method executing and after action method is done executing. We can also create Custom Action Filters. Please go through all these points.
- Other Filters - AuthorizationFilter, ResultFilters, ExceptionFilters are some more filters which are provided by MVC and useful. Please go in depth with these.
- Entity Framework - An easy way to communicate with MVC and your database. You can map your application and your database using Entity Framework and call store procedures/ functions using it. Also, any changes in the database can be easily reflected in your application by just updating the edmx. Please go through, how to use stored procedures and functions using Entity Framework.
- Areas - It allows you to group your different modules under separate folders each having their own MVC structure. For eg:- We are covering two functionalities in our application. Accounts and Invoice. So we create two areas with these names. They have their own MVC folder structure where you can add their respective models, views and controllers. It’s for easy maintenance. However, the main thing here is to know, how to call controller/view of one area from other area. Please dwelve on how to create areas and call/transfer data in between areas.
BEST BEST BEST
Programming languages have come a long way in terms of being easy to learn and understand.
C# is a versatile programming language, and after learning it, you can apply your skills to a variety of things. The .NET framework includes hundreds of libraries for working with the file system, managing security.
If you are looking forward for Online MVC Course I strongly reccomend to join these online programme . With these training you can build an endless variety of applications, from web apps to mobile apps, REST APIs, and more.
- Tutorials Teacher
Key Topics covered in this are:
- Data types, classes, and variables
- Switches and loops
- Strings and arrays
- Stream I/O
2. Lynda.com – Learning C#
Key Topics covered in this are:
- Working with loops
- Building functions
- Catching errors
- Managing resources with the garbage collector
3. C# Station
Key Topics covered in this are:
- Expressions, Types, and Variables
- Namespaces
- Introduction to Classes
- Indexers and Attributes
- Working with Nullable types
4. Deccansoft -C# Training
Key Topics covered in this are:
- Key Topics:.NET Framework
- Concepts behind CLR (Common Language Runtime)
- Building a standard GUI for Windows based applications using WinForms.
- Developing scalable applications using multithreading features of .NET
5. edX – Programming with C#
Key Topics covered in this are:
- The C# syntax
- C# language fundamentals
- Object oriented programming
- The .NET Framework concept
6. Microsoft Virtual Academy – C# fundamentals for absolute beginners
Key Topics covered in this are:
- Creating and understanding your first C# program
- Understanding Data types and Variables
- Understanding Arrays
- Working with Strings
- Learning how to work with Date and Time data
7. Udemy – C# Programming projects for beginners
Key Topics covered in this are:
- Practicing loops, arrays, and structures
- Start coding beginner projects immediately
- Thinking like a programmer
- Using the right approach
You can read here best online tutorials for Asp.Net Online Course
HAY HAY HAY HAY HAY
https://www.quora.com/Which-is-the-best-source-to-learn-ASP-NET-with-C-MVC-online-from-scratch
The best tutorials to learn ASP.NET and C# are from Microsoft Virtual Academy (MVA).
Microsoft Virtual Academy provides free, online training to help Developers, IT and Data Professionals, and students learn the latest technology, build their skills, and advance their careers.
- Top C# courses in MVA:
Programming in C# Jump Start
C# Fundamentals for Absolute Beginners - Top ASP.NET courses in MVA:
Introduction to ASP.NET 5
Introduction to ASP.NET MVC
Implementing Entity Framework with MVC
And during studying courses in MVA you will have tests for each level and points you finish also finally can gain a certificate after course completion.
Sample of my Certificates from MVA in ASP.NET MVC.
Also after learning and finishing tutorials , you can check free .NET open source projects to try to develop a project by yourself.
Below several examples for MVC open source projects to check their ideas in several types of applications (Games, Social Network, Advanced Business applications and more ... )
- Games applications:
CHESS GAME : Free open source Chess game developed with MicrosoftASP.NET MVC4. - Chat applications:
Real-time chat applications : Real-time web application with ASP.NETSignalR 2 and ASP.NET MVC 5. - Advanced Business applications:
Applications that manage special business for any organization (University, Company, Hospital, Restaurants ... ), with advanced technical project architecture (Multi layer or N-Tier architecture, Generic repository, Multi language support, Multi country support, Web services and with Database )
- Pro-Dinner application : Application to host dinners with multi language support, developed with MVC5.
Life Demo for Pro-Dinner.
Project architecture for Pro-Dinner. - More free open source project with ASP.NET MVC to download
https://www.quora.com/What-are-the-best-resources-to-learn-asp-net-MVC
https://www.quora.com/What-is-the-best-online-tutorial-for-learning-C-net-and-ASP-NET-MVC-4
Good Good Good
Udemy reached out to me and asked me if I would be interested in writing a beginner's tutorial on ASP.NET MVC. It can be found here (ASP.NET MVC Tutorial).
I'm also active writing about ASP.NET MVC on my web site (http://www.danylkoweb.com/) with more advanced topics.
https://hackr.io/tutorials/learn-asp-net (HAY HAY HAY HAY HAY)
I will strongly recommend you to follow kudvenkat video tutorials. This channel is really god of ASP.NET , C# and lot more things like MVC, ADO.NET, SQL, WCF, Bootstrap, Angular.
You can also find tutorials on blogpost Sql server, .net and c# video tutorial.
He teach step by step. You will find tutorials easy to understand. He covers all the basics of every topic. Once you start watching, you will know beauty.
Many Windows software solution companies taught this tutorials to their freshers.
https://www.quora.com/What-is-the-best-way-to-study-ASP-NET-MVC
https://www.quora.com/Is-there-any-ASP-NET-MVC-scheduler-open-source
https://www.quora.com/What-are-the-different-ways-to-secure-the-ASP-NET-MVC-application
https://www.quora.com/What-is-the-best-book-for-asp-net-MVC
https://www.quora.com/Why-is-ADO-NET-not-preferred-in-ASP-NET-Core-MVC-applications
Training: https://www.dotnettricks.com/training/masters-program/mvc-angular
Dynamic Themes
https://www.codeproject.com/Articles/32847/ASP-NET-MVC-Dynamic-Themes
https://cpratt.co/how-to-change-the-default-asp-net-mvc-themet/
Sample Admin Template
http://mvcadmintemplate.azurewebsites.net/
https://github.com/jrocket/MVC-Bootstrap-3-Admin-Template
https://github.com/puikinsh/Bootstrap-Admin-Template
Open Source
https://www.findbestopensource.com/product/go2ismail-adminlte-asp-net-mvc (HAY HAY HAY HAY HAY)
AdminLTE Questions
https://stackexchange.com/search?q=AdminLTE
https://stackoverflow.com/questions/tagged/adminlte
https://stackoverflow.com/tags/adminlte/
https://stackoverflow.com/tags/adminlte/new
AdminLTE Expand or Fullscreen Boxes
https://stackoverflow.com/questions/37785701/adminlte-expand-or-fullscreen-boxes
AdminLTE + Angular
https://www.prishusoft.com/blog/Integrate-AdminLTE-theme-to-Angular-Project.html
AdminLTE 2.4.x Demo: https://adminlte.io/themes/AdminLTE/index2.html
AdminLTE 2.0.4 into ASP.NET MVC 5: https://github.com/eralston/AdminLteMvc
https://www.nuget.org/packages/AdminLteMvc/
AdminLTE 2.4.0 into ASP.NET MVC 5: https://github.com/go2ismail/AdminLTE-ASP-NET-MVC
https://www.howtosolutions.net/2017/05/visual-studio-asp-net-mvc-project-installing-adminlte-control-panel/ (HAY HAY HAY)
AdminLTE 2.4.9 into ASP.NET MVC 5: https://github.com/c0shea/AdminLTE-Template
https://marketplace.visualstudio.com/items?itemName=c0shea.AdminLTETemplate
AdminLTE into ASP.NET MVC 5 (VN)
https://sharecode.vn/source-code/adminlte-project-template-aspnet-mvc-5-19751.htm
AdminLTE 2.4.9 into ASP.NET Core MVC:
https://codinginfinite.com/setting-up-admin-template-asp-net-core-mvc/
https://codinginfinite.com/creating-admin-panel-asp-net-core-mvc-tutorial/
CSS: Word Break
-ms-word-break: break-all;
word-break: break-all; overflow-wrap: break-word; word-wrap: break-word;
https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
Bootstrap Sidebar
https://github.com/BlackrockDigital/startbootstrap-simple-sidebar
AdminLTE Tutorials
AdminLTE Treeview not working properly (HAY HAY HAY)
$(document).on('turbolinks:load', function(){ $(Selector.data).each(function () { Plugin.call($(this)); }); });
AdminLTE Box Collapse Trigger Event Listener (HAY HAY HAY)
https://stackoverflow.com/questions/38399553/adminlte-box-collapse-trigger-event-listener
box_content.slideUp(_this.animationSpeed, function () { box.addClass("collapsed-box"); box.trigger('collapsed',[box, element]); }); box_content.slideDown(_this.animationSpeed, function () { box.removeClass("collapsed-box"); box.trigger('expanded',[box, element]); });
AdminLTE: Sidebar & Top Navbar (HAY HAY HAY)
https://stackoverflow.com/questions/51297099/adminlte-how-to-collapse-sidebar-but-not-top-navbar
AdminLTE Menu (HAY HAY HAY)
See: https://stackoverflow.com/a/46256226/7353073
This works for AdminLTE Sidebar Menu and also for Sidebar Menu Treeview
/* add active class and stay opened when selected */ var url = window.location; // for sidebar menu entirely but not cover treeview $('ul.sidebar-menu a').filter(function() { return this.href == url; }).parent().siblings().removeClass('active').end().addClass('active'); // for treeview $('ul.treeview-menu a').filter(function() { return this.href == url; }).parentsUntil(".sidebar-menu > .treeview-menu").siblings().removeClass('active').end().addClass('active');
AdminLTE with iFrame (HAY HAY HAY HAY HAY):
https://weituotian.github.io/AdminLTE-With-Iframe/
https://gitee.com/feiybox/AdminLTE-With-Iframe/
https://gitee.com/VensonYang/AdminLTE-With-Iframe/
https://github.com/nvmanhifi/AdminLTE-With-Iframe
https://gitee.com/nvmanhifi/AdminLTE-With-Iframe/
Live text search function:
http://www.designchemical.com/blog/index.php/jquery/live-text-search-function-using-jquery/
http://www.designchemical.com/lab/jquery/demo/jquery_demo_live_comment_search.htm
Live menu search:
https://github.com/ColorlibHQ/AdminLTE/issues/798
Sidebar:
https://adminlte.io/docs/2.4/sidebar
https://stackoverflow.com/questions/49447184/hide-text-of-title-in-sidebar-collapse-in-adminlte
https://stackoverflow.com/questions/49750474/sidebar-menu-title-not-showing-properly-in-adminlte
JS Box Refresh:
https://adminlte.io/docs/2.4/js-box-refresh
Treeview-menu in Sidebar:
https://github.com/tannakartikey/AdminLTE/commit/44434ac54021744bfffe908810248f181690cb5d
Hover dropdown menu
https://github.com/ColorlibHQ/AdminLTE/issues/339
AdminLTE with iFrame:
https://weituotian.oschina.io/adminlte-with-iframe/
Angular 7:
https://www.c-sharpcorner.com/article/integrating-theme-in-angular-72/
React:
https://github.com/zksailor534/react-adminlte-dash
Dynamic Menu AdminLTE