Skip to main content

Posts

Showing posts from 2017

Featured Post

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

ASP.NET CORE : How to Override the attribute in TagHelper

When you design custom tag Helper then you need to change the name of attribute. I mean to say that need to override the name of attribute. In C#, You can use annotation or you can say property. In square bracket simply type HtmlAttributeName property just before the class property. You can check  the video , if you want to do this

Online Movie Ticket Booking Project in ASP.NET MVC 6 || ASP.NET CORE

Finally, i decide to make a project in ASP.NET CORE. In last 30 days to try to build Online Movie Ticket booking system Project in ASP.NET Core. Finally, I build it. In this Project, I am taking two user , one is admin and another one is Visitor (who book the ticket). You can check the functionality of the project by video: You can Buy this project Easily with minimum price. I resolve all bugs via team viewer. Just mail me to Buy it: mail :     narenkumar851@gmail.com Security of the project: 1. Authentication is based identity management which is provided by Microsoft. 2. Without Authenticate you can not book the ticket. 3. Anti-Forgery Token generated. 4. Policy based Claimed also mentioned. Testing of the project In this project, I apply Mock Testing to test the project. So, Single Solution we have three project , first one is Class Library Project for Data Access layer with Unit of work class, Second one is UI for Movie Ticket Booking system and the last one is Te

Getting Started with Python

In this Course i will teach you the following Fundamental Course of Python Beyond the basics  Advance version of Python. features of Python  Implementation of Python Why We learn Python  Download Full Theory about these topics :  https://goo.gl/gyY5pa

Paging in ASP.NET CORE , Its Different from Microsoft Code, Too Much Easy

First of all thanks to refection IT , which provide us a nugat package for data paging. In this tutorial i have to use ReflectionIT.MVC.Paging package for creating a paging in ASP.NET CORE.

AirLine || AirTicket Reservation System project in JAVA

An airline reservation system (ARS) is part of the so-called passenger service systems (PSS), which are applications supporting the direct contact with the passenger. ARS eventually evolved into the computerreservations system (CRS).( 1 ) When you have a ticket then you can check the details of the flight. In it we have many contents like passenger name, flight name , flight number, seat number, class of flight like 1st class, 2nd class etc. I created a project on the basis of this concept. This is GUI based Java Project. By using this project , you can book passenger ticket at a time. If you want to check the module and functionality of the project then you can see this video.   If you want to purchase this project must to contact on email :  narenkumar851@gmail.com

Read, Write Cookies Example in ASP.NET CORE 1.1

In this example, I will show you how to store temporary values in cookies. In ASP.NET Core we have a CookieOption class to store cookies in Text File.  I have a video tutorial for you to create and read cookies in ASP.NET CORE.

How to use Session in ASP.NET Core 1.1

First to update your visual studio by using visual studio installer.  I am currently working in this version of visual studio . Get the current version of visual. I use session in this version , and session have work perfectly. 1. First to Add the Microsoft.AspNetCore.Session NuGet package to your project. Now you can use session , watch this video and learn more about session.

How to pass string type array from Controller to View in ASP.NET Core

First to remember that when we pass array, List or any collection from controller to view then must to add model with IEnumerable<type> . Here IEnumerable refer to collection.  After that you can retrieve items using for-each loop.

Create RadioButtonList, Get selected value From RadioButtonList in ASP.NET Core

A RadioButtonList have some multiple radio buttons , I mean to say that using loop its looking like a RadioButtonList. In ASP.NET CORE 1.1 , MVC we have to show you, how to create a Radio Button List in it.   We have to show you an Example of RadioButton List in ASP.NET CORE.

ASP.NET Hindi Video Tutorials

यदि आप ASP.NET WEBFORM सीखना चाहते हैं तो आप यह प्लेलिस्ट का उपयोग कर सकते हैं | इस प्लेलिस्ट के अन्दर आपको शुरुवात से बताया जायेगा की आपको कैसे विसुअलस्टूडियो को ओपन करना कैसे उसके विंडोज जैसे की सलूशन एक्स्प्लोरर , टूलबॉक्स, सरवर एक्स्प्लोरर इत्यादि  को कैसे काम में लेना हैं | इस प्लेलिस्ट के अन्दर हर उस कण्ट्रोल का विडियो बनाया गया हैं जो की टूलबॉक्स में उपस्थित हैं | जैसे की ड्रापडाउनलिस्ट, लिस्त्बोक्स, चेकबॉक्स, रेडियोबटन इतियादी | इस प्लेलिस्ट में आपको बताया जायेगा की फ्रंट एंड एप्लीकेशन को बेकएंड एप्लीकेशन से कैसे जोड़ा जाता हैं कहने का मतलब हैं  डाटाबेस की कनेक्टिविटी कैसे की जाती हैं | Dynamic  एप्लीकेशन पर कैसे StyleSheet और कैसे थीम को कनेक्ट किया जाता हैं |  Entity Framework को पूरा हिंदी में सिख सकते हैं |  LINQ को हिंदी में सिख सकते हैं |  Validation कण्ट्रोल क्या होते हैं कैसे उनका उपयोग किया जाता हैं सब कुछ सिर्फ इस एक प्लेलिस्ट के माध्यम से सिख सकते हैं | 

How to create Database in ASP.NET CORE 1.1 using model first

Technology changes, code optimization, newly design asp.net core 1.1. This article i wrote for you who want to make database in asp.net core 1.1, its a very simple technique provide by Microsoft developers. Thanks guys. Let start how to do this,  you can follow these steps to design database in it. Step-1: Create a new project in ASP.NET CORE using Visual Studio 2017 by the using following picture Step-2: In Model folder, add a new Student.cs class. Add some properties in it. But make sure , one primary key have in it. Step-3: Similarly in previous make, a new DataContext class for communicating table. Check this video for full details