How to convert bytes to stream using asp.net c#? By: Mohamed Rasik 26 February 2016 In this article you will learn about how to convert url to stream using Asp.NET C#. Read More
How to get last inserted value from a table using c# ? By: Mohamed Rasik 24 February 2016 In this article learn how to get last inserted value in a table. When we insert data into table we get the last identity value using @@IDENTITY. Read More
how to insert text in the begining and end of stringbuilder? By: Mohamed Rasik 23 February 2016 From this article you can learn how to insert a string in a string builder by specifying the start position and the text that you need to insert. Read More
How to resize an Image at run-time in C# asp.Net? By: Mohamed Rasik 21 February 2016 In this article you will learn about how to resize an Image at run-time using C# asp.Net.Resize an image with good quality, and having less weight of an image so that webpages will load it faster. Read More
how to create a Autocomplete textBox using Asp.net C#? By: Mohamed Rasik 20 February 2016 In this article I will explain how to create a autocomplete textbox using C# in ASP.Net. Read More
how to read xml and then bind it to GridView control in ASP.Net using c# ? By: Mohamed Rasik 20 February 2016 In this article I will explain how to read the data from XML file and bind toGridView control using C# in ASP.Net. Read More
[solved ]The required anti-forgery cookie "__RequestVerificationToken" is not present. By: Mohamed Rasik 18 February 2016 We need to add [ValidateAntiForgeryToken] attribute before our action. And also should add @Html.AntiForgeryToken() in our form. Read More
How to use dropdownlistfor in MVC .net? By: Mohamed Rasik 17 February 2016 Simple example of how to create a drop down list in ASP.NET MVC using DropDownListFor. Read More
how to use goto statement in c#? By: Mohamed Rasik 16 February 2016 The goto statement is a jump statement that controls the execution of the program to another segment of the same program. Read More
how to do while loop in C#? By: Mohamed Rasik 16 February 2016 We need to repeat the code block of C# statements as long as a certain Boolean expression evaluates to true. Read More