Chicken Shop Inventory Management using C#.net

This tutorial will teach you  to make a small Chicken shop Inventory  system using c#.net. The following  system will use to manage the Chicken shop. Paste the code inside the ok button string status = chkchicken.SelectedItem.ToString(); double qty = double.Parse(txtqty.Text); if (status.Equals(“KG”)) { double tot = qty * 100; txttotal.Text = tot.ToString(); } else { […]

Chicken Shop Inventory Management using C#.net Read More »

Node Js Introduction

Node js is a server side programming language.which is a Javascript Engine. In Google chrome JavaScript running engine name as V8 Engine. In Firefox JavaScript running engine name as spidermonkey. First we will discuss about what is Front End and Back End. Best Example Imagine when you try to change the profile picture of Facebook

Node Js Introduction Read More »