ASP.NET
ASP.NET is a free web framework for building Web sites and Web applications using HTML, CSS and JavaScript. Create Web APIs, mobile sites and use real-time technologies.
Articles
  • Rohatash Kumar

    Generate Random Password in ASP.NET

    Generate Random Password in ASP.NET: Enhance security with ASP.NET by creating a randomized password generator. Utilize built-in features or custom code to generate strong, unpredictable passwords,...
    Rohatash Kumar Mar 02, 2012
  • Rahul Bansal

    Authenticate the Valid User Via User id and MD5 Hashed Password

    Secure user authentication with MD5 hashed passwords and user IDs. This method ensures robust password protection by encrypting passwords before storage, enhancing system security and safeguarding ...
    Rahul Bansal Aug 27, 2014
  • Nilesh Jadav

    Save Encrypted Password In Database In ASP.NET

    In this article, Discover how to enhance security in your ASP.NET application by saving encrypted passwords in the database. Learn the process of encrypting passwords before storing them, ensuring ...
    Nilesh Jadav Oct 24, 2015
  • Nilesh Jadav

    Make Password Hash In ASP.NET Using C#

    Learn how to enhance security in your ASP.NET applications by implementing password hashing using C#. This tutorial guides you through the process of creating hashed passwords, ensuring better prot...
    Nilesh Jadav Oct 23, 2015
  • Sourabh Somani

    Create Your First ASP.Net MVC Application

    Embark on your web development journey by creating your first ASP.Net MVC application. This beginner-friendly tutorial guides you through the process of setting up, coding, and deploying a basic MV...
    Sourabh Somani Nov 20, 2014
  • Sourabh Somani

    Get Version of Your MVC Application

    This MVC application's HomeController retrieves the version information using C#'s Assembly class. It dynamically fetches and formats the MVC version, embedding it in HTML's bold tag to...
    Sourabh Somani Nov 18, 2014
  • Atul Rawat

    ASP.Net MVC 6 New Features

    Explore the cutting-edge advancements in ASP.NET MVC 6 with its array of new features. Delve into the world of cross-platform development, streamlined middleware architecture, and enhanced performa...
    Atul Rawat Jan 02, 2015
  • Abhimanyu K Vatsa

    GET and POST Calls to Controller's Method in MVC

    In this article I am going to cover some really interesting material that is very useful today in web application development. You will learn how to make jQuery Ajax GET and POST calls to controlle...
    Abhimanyu K Vatsa Feb 14, 2013
  • Sandeep Singh Shekhawat

    ASP.Net MVC 4 - Layout and Section in Razor

    Razor has a feature called "layouts" that allow you to define a common site template, and then inherit its look and feel across all the views/pages on your web application.
  • Prashant Nimbare

    Model in ASP.Net MVC : Part 1

    The Model in MVC encapsulates application logic, excluding view and controller logic. It manages data and performs operations. This article guides through creating and utilizing a Model class in an...
    Prashant Nimbare Oct 02, 2013
  • Jignesh Trivedi

    Attribute Routing in ASP.Net MVC 5.0

    This article introduces Attribute routing in ASP.Net MVC 5.0 and offers a powerful way to define routes directly within controller actions using attributes, enhancing control over URL patterns and ...
    Jignesh Trivedi Mar 13, 2014
  • Sourabh Somani

    ASP.Net MVC View

    In this article, we will learn ASP.NET MVC Views offer flexible presentation layer control. Utilize Razor syntax for dynamic HTML rendering, leverage Layouts for consistent design, and employ Parti...
    Sourabh Somani Nov 22, 2014
  • Ashish Shukla

    HtmlHelper Methods in ASP.NET MVC

    Explore the power of HtmlHelper methods in ASP.NET MVC for efficient HTML generation. Learn how to leverage Razor syntax to streamline MVC Views, utilizing form helpers, tag helpers, and other tech...
    Ashish Shukla Mar 24, 2013
  • Sourabh Somani

    ASP.Net MVC Controller

    This article elucidates controllers, actions, and routing in ASP.NET MVC. It clarifies how user requests are handled by controllers, invoking specific actions based on URLs. It emphasizes the signi...
    Sourabh Somani Nov 20, 2014
  • Suraj Sahoo

    Exception Filters in MVC

    Learn how MVC handles exceptions using built-in and custom exception filters. Explore the HandleError attribute for managing exceptions and creating custom error pages. Avoid the dreaded Yellow Sc...
    Suraj Sahoo Jul 13, 2015
  • Priti Ranjan Dash

    Custom Error Page in ASP.NET MVC

    In this article, we will Discover the ins and outs of Custom Error Pages in ASP.NET MVC with this comprehensive guide. Learn how to handle and customize error responses effectively within your MVC ...
    Priti Ranjan Dash Aug 24, 2015
  • Pradeep Shet

    Adding Custom Validation in MVC

    In MVC, custom validation involves creating validation attributes to enforce specific rules beyond built-in ones, enhancing data integrity and user experience through tailored validation logic.
    Pradeep Shet Jun 30, 2014
  • Mukesh Nayak

    Remote Validation in MVC

    Learn to implement remote validation in MVC, validating specific data without posting the entire form. Utilize the "Remote" attribute to check email existence by calling a controller acti...
    Mukesh Nayak Apr 21, 2014
  • Sandeep Singh Shekhawat

    Getting Started with Razor View Engine in MVC 3

    Learn about the Razor View Engine in MVC 3 through this beginner-level article, covering syntax basics, creating a User Registration Application, and utilizing Data Annotation Validator Attributes...
  • Sandeep Singh Shekhawat

    Displaying Data On View From Controller

    In ASP.NET MVC, data from a controller can be displayed on a view using various methods like ViewData, ViewBag, or strongly-typed models. Controllers pass data to views, leveraging Razor syntax to ...