Saturday, 11 December 2021
Find cat in Sheep
Wednesday, 8 December 2021
File compress client side by Java script before upload to server | C# ASP.Net
File compress facility is available in javascript and it's good practice to compress files client-side, before uploading to the server because it saves the resource of the Server time and internet bandwidth and increases the user file upload experience.
Saturday, 20 November 2021
Generic List C#
A generic list is a dynamic array-like structure used to store user information for any type of data . The list is one of the most powerful and useful data structures provided by C#. You can not imagine modern programming without a generic list because built-in programming capability makes a developer work easy. You will get some practical real-life programing practice from the list in this post.
public class Student
{
public string roll { get; set; }
public string name { get; set; }
public string city { get; set; }
}
Sunday, 14 November 2021
Layout/Master page in laravel
Layout/Master page in laravel
Making Layout or Master page in laravel is very simple . Go through the given steps below.
Step 1: Make a view named Layout.blade.php
Make a view for layout named layout.blade,php in resources\views folder.