Mritunjay Kumarcodecomponents.hashnode.dev·Aug 24, 2024Asp.net Mvc 5This is the last version of MVC from the .NET Framework. The next version was first called MVC 6 but was later renamed to ASP.NET Core MVC and moved to .NET Core. So, let's start by learning ASP.NET MVC 5. Design Patterns Design patterns are best pra...ASP.NET
Mritunjay Kumarcodecomponents.hashnode.dev·Aug 16, 2024ASP.NET Web FormsASP.NET is an open-source application framework created by Microsoft for building modern web apps and services. It allows you to create dynamic web pages using .NET with C#, VB.NET, or F#. ASP.NET extends the .NET platform with tools and libraries sp...84 readsASP.NET
Mritunjay Kumarcodecomponents.hashnode.dev·Jul 12, 2024SQL Server TutorialsSQL Server is a database management system developed by Microsoft for storing and retrieving data as requested by other software applications. Database: A database is a collection of related data. For example, a university database includes informati...182 readsORDBMS
Mritunjay Kumarcodecomponents.hashnode.dev·Jul 11, 2024Method Overriding and Hiding in C#In C#, method overriding and method hiding are mechanisms used to alter or extend the behavior of methods defined in base classes when creating derived classes. These concepts are fundamental to object-oriented programming and provide flexibility and...#CSharpProgramming
Mritunjay Kumarcodecomponents.hashnode.dev·Jun 26, 2024Data Type in C#In C#, a data type defines what kind of value a variable can hold. Data types are essential in any programming language because they decide what operations can be done on the data and how the data is stored in memory. In c# there are 3 type's of data...1 like·49 readsC#
Mritunjay Kumarcodecomponents.hashnode.dev·Jun 10, 2024Learn C#.NET Advancec LevelIf you do not understande what is .NET ,what is C#, Compilation of C#, execution of C#, Data types,Operatord, type casting, Strings, Conditional statments, Controll statments, Loop's, Array's and Method's. Then first understand this then come hear, h...3 likes·426 readsadvance C#
Mritunjay Kumarcodecomponents.hashnode.dev·May 21, 2024Boost Your Node.js Workflow with Nodemon: A Step-by-Step GuideFirst create simple Server:- Create a simple folder named "server" or whatever you want to name it. Like that: By using the terminal, go to the server folder and write npm init, then press enter. Like that: Like that, if you want to add some detai...1 likeNode.js
Mritunjay Kumarcodecomponents.hashnode.dev·May 7, 2024Master JavaScript: A Comprehensive Guide from Beginner to Advanced LevelsTopics Covered: Basic points Data Types Conversion Operations Data Type Details Memory Management String in JavaScript Numbe in JavaScript Create array Some Method of Array slice and splice Flat Aske is an array Or convert in to array O...1 like·99 readsLearn JavaScript from beginner to advanced
Mritunjay Kumarcodecomponents.hashnode.dev·May 2, 2024Mastering the fundamentals of C languageTopics Covered: INTRODUCTION TO C What is a program? What is a software? What is a language? What is a translator? What is a programming paradigm? What is called monolithic programming paradigm? Function oriented programming structure Object...1 like·118 reads#LearnC
Mritunjay Kumarcodecomponents.hashnode.dev·Feb 28, 2024Sending Email Verification with Node.js: A Beginner's GuideIntroduction: Sending email verification is a crucial step in many web applications, ensuring that users' email addresses are valid and helping to secure their accounts. In this guide, we'll walk through the process of sending email verification usi...3 likes·59 reads#Codecomponents