Loading

ASP.NET MVC

What is Attributes in MVC Part # 2?. The Complete ASP.NET MVC Developer Course 2023 [Videos].

In this article, I am going to continue the discussion of Attributes in MVC Application. As part of this article, we are going to discuss UIHint, HiddenInput, and ReadOnly built-in attributes. This is a continuation part of our previous article, so please read our previous article before proceeding to this article. In our previous article, we discussed the following built-in attributes.


Built-in Attributes in MVC Application

UIHint Attribute in ASP.NET MVC Application:

Let us understand how to open a page in the new browser window in asp.net MVC application. Along the way, we will also see how to use the UIHint attribute in ASP.NET MVC.

Modify the ModifyEmployee.cs class file in the Models folder as shown below.

namespace AttributesInMVC.Models
{
[MetadataType(typeof(EmployeeMetaData))]
public partial class Employee
{
}
public class EmployeeMetaData
{
[DataType(DataType.Url)]
public string PersonalWebSite { get; set; }
}
}
Modify the Details action method of EmployeeController as shown below
namespace AttributesInMVC.Controllers
{
public class EmployeeController : Controller
{
public ActionResult Details(int id)
{
EmployeeDBContext dbContext = new EmployeeDBContext();
Employee employee = dbContext.Employees.Single(x => x.Id == id);
return View(employee);
}
}
}
Modify the Details.cshtml view as shown below.
@model AttributesInMVC.Models.Employee
@{
ViewBag.Title = "Details";
}
@Html.DisplayForModel()

At this point, build the application and navigate to http://localhost:61449/Employee/Details/1. When you click on the personal website link, the target page will open in the same window.

How to open the page in a new window?

If you want the page to be open in a new window, then please follow the below steps.

Right-click on the “Views” folder, and add the “Shared” folder if it does not exists. Then again, Right-click on the “Shared” folder and add a folder with the name “DisplayTemplates“. Next, Right-click on the “DisplayTemplates” folder, and add a view with the name “Url.cshtml“. Once you created the Uri.cshtml view, then please copy and paste the following code in it.

Thats it. Build the application and click on the link. Now you will see that the page is opened in a new window. The downside of this approach is that from now on all the links, will open in a new window. To overcome this, please follow the below steps.

  1. Rename Url.cshtml to OpenInNewWindow.cshtml
  2. Decorate the “PersonalWebSite” property in EmployeeMetaData class with UIHint attribute and specify the name of the template to use. In our case, the name of the template is â€œOpenInNewWindow” as shown below.
  3. namespace AttributesInMVC.Models
    {
    [MetadataType(typeof(EmployeeMetaData))]
    public partial class Employee
    {
    }
    public class EmployeeMetaData
    {
    [DataType(DataType.Url)]
    [UIHint("OpenInNewWindow")]
    public string PersonalWebSite { get; set; }
    }
    }

    So, the UIHint Attribute in ASP.NET MVC is used to specify the name of the template to use to display the data field on the model properties. 

Hidden Input Attribute in ASP.NET MVC:

The HiddenInput attribute in ASP.NET MVC is used to generate an HTML element with the input type=hidden. This attribute is extremely useful when you dont want the user to see or edit the property, but you need to post the property value to the server when the form is submitted, so the correct record can be updated. The Hidden Input attribute is present in the System.Web.Mvc namespace.

Readonly Attribute in ASP.NET MVC:

The ReadOnly attribute is present in System.ComponentModel namespace. As the name suggests, this attribute is used to make a property read-only. Please note that we will still be able to change the property value on the view, but once we post the form the model binder will respect the read-only attribute and will not move the value to the property.  We can also, make the property of a class readonly simply, by removing the SET accessor

Let us understand the use of HiddenInput and Readonly Attribute with an example.

Modifying the ModifyEmployee.cs file:  

Modify the ModifyEmployee.cs file as shown below. Please notice that the Id property is decorated with HiddenInput attribute and EmailAddress is decorated with the ReadOnly attribute.

namespace AttributesInMVC.Models
{
[MetadataType(typeof(EmployeeMetaData))]
public partial class Employee
{
}
public class EmployeeMetaData
{
// Id property is hidden and cannot be changed
[HiddenInput(DisplayValue = false)]
public int Id { get; set; }
// EmailAddress is read only
[ReadOnly(true)]
[DataType(DataType.EmailAddress)]
public string EmailAddress { get; set; }
[ScaffoldColumn(true)]
[DataType(DataType.Currency)]
public int? Salary { get; set; }
[DataType(DataType.Url)]
[UIHint("OpenInNewWindow")]
public string PersonalWebSite { get; set; }
[DisplayAttribute(Name = "Full Name")]
public string FullName { get; set; }
[DisplayFormat(DataFormatString = "{0:d}")]
public DateTime? HireDate { get; set; }
[DisplayFormat(NullDisplayText = "Gender not specified")]
public string Gender { get; set; }
}
}
Changes to EmployeeController.cs file
using System.Web.Mvc;
using AttributesInMVC.Models;
using System.Data.Entity;
namespace AttributesInMVC.Controllers
{
public class EmployeeController : Controller
{
public ActionResult Details(int id)
{
EmployeeDBContext dbContext = new EmployeeDBContext();
Employee employee = dbContext.Employees.Single(x => x.Id == id);
return View(employee);
}
public ActionResult Edit(int id)
{
EmployeeDBContext dbContext = new EmployeeDBContext();
Employee employee = dbContext.Employees.Single(x => x.Id == id);
return View(employee);
}
[HttpPost]
public ActionResult Edit(Employee employee)
{
if (ModelState.IsValid)
{
EmployeeDBContext dbContext = new EmployeeDBContext();
Employee employeeFromDB = dbContext.Employees.Single(x => x.Id == employee.Id);
// Populate all the properties except EmailAddrees
employeeFromDB.FullName = employee.FullName;
employeeFromDB.Gender = employee.Gender;
employeeFromDB.Age = employee.Age;
employeeFromDB.HireDate = employee.HireDate;
employeeFromDB.Salary = employee.Salary;
employeeFromDB.PersonalWebSite = employee.PersonalWebSite;
dbContext.Entry(employeeFromDB).State = EntityState.Modified;
dbContext.SaveChanges();
return RedirectToAction("Details", new { id = employee.Id });
}
return View(employee);
}
}
}
Create Edit.cshtml view and copy and paste the following code
@model AttributesInMVC.Models.Employee
@{
ViewBag.Title = "Edit";
}
<div style="font-family:Arial">
@using (Html.BeginForm())
{
@Html.EditorForModel()
<br />
<br />
<input type="submit" value="Save" />
}
</div>

Run the application and navigate to http://localhost:61449/Employee/Edit/1 and see everything is working as expected

See All

Comments (297 Comments)

Submit Your Comment

See All Posts

Related Posts

ASP.NET MVC / Youtube

What is MVC?

MVC is an architectural software design pattern that is used for developing interactive applications where their user interaction is involved and based on the user interaction some event handling has occurred. It is not only used for web-based applications but it can also be used for Desktop or mobile-based applications where there are user interactions involved.
28-jan-2022 /28 /297

ASP.NET MVC / Youtube

How to Creat First ASP.NET MVC Application using Visual Studio?

In this article, I am going to discuss how to create the first ASP.NET MVC Application step by step from scratch using Visual Studio 2015. You can use any version as per your choice but the step will remain the same. Please read our previous article before proceeding to this article where we gave a brief introduction to ASP.NET MVC Framework.
28-jan-2022 /28 /297

ASP.NET MVC / Youtube

What is ASP.NET MVC File and Folder Structure?

In this article, I am going to discuss the auto-generated ASP.NET MVC File and File Structure when we create a new ASP.NET MVC application. Please read our previous article before proceeding to this article where we discussed how to create ASP.NET MVC 5 application step by step from scratch.
28-jan-2022 /28 /297