Hi folks, Here I am going to create a simple example of Autocomplete TextBox in ASP.NET MVC using Jquery. Autocomplete Textbox in ASP.NET MVC using Jquery: The Autocomplete widgets provide suggestions while you type into the field. In this session, I will explain to you how to create an Autocomplete Textbox in ASP.NET MVC using…
We need to look at how to support multi-value fields. For example a job may require a Spanish feed and also be a home game. Now this selection is in a single value single filed. Again this is a job related item but the technology may need to be supported here as well, i.e. possible…
C# Program to Reverse a Number and String
In this tutorial, I am going to write Program to Reverse a Number and String in C#. C# Program to Reverse a Number: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ReverseNumber { class Program { static void Main(string[] args) { Console.WriteLine(“Enter a Number to Reverse”); int iNumber = Convert.ToInt32(Console.ReadLine()); int iReverse…
Difference between VieweResult() and ActionResult() in ASP.NET MVC
Hello readers In this tutorial we are going to see what is the difference between ViewResult() and ActionResult() in ASP.NET MVC. This is a very interesting topic for interview point of view. Difference between ViewResult() and ActionResult() in ASP.NET MVC: View Result ActionResult 1- ViewResult can return only view result type. Action…
Basic usage of ng-grid in ASP.NET MVC
Hello readers, In this session we will see a basic usage of ng-grid in ASP.NET MVC. This example will demonstrate you to Display records in a grid using ng-grid Angular Js. After completing this tutorial what you’ll learn? Basic usage of ng-grid in ASP.NET MVC to display records. What you’ll do? Create an ASP.NET MVC…