开发者

How to change [DisplayName"xxx"] in Controller?

开发者 https://www.devze.com 2023-01-11 09:17 出处:网络
Folks, I am MVC 2 newbie and stuck on this problem: Ac开发者_如何学CcountModuls.cs public class LogOnModel

Folks,

I am MVC 2 newbie and stuck on this problem:

Ac开发者_如何学CcountModuls.cs

public class LogOnModel
{
[Required]
[DisplayName("User name")]
public string UserName { get; set; }
…
}

LogOn.aspx

<%: Html.LabelFor(m => m.UserName) %>

The text “User name” will be finally displayed in the website - based on my definition

[DisplayName("User name")].

No Problem.

But how can I change this text in AccountController.cs?

public ActionResult LogOn()
{   
return View();
}


You can't :) You have to change the DisplayName-attribute on the class in order for the .LabelFor helper to construct the label. You could of course just write out the HTML for the Label yourself if you want it to be something else.

Don't see why you would want to change the Displayname from page to page though? Am I misunderstanding something?

Edit:

Custom displayname attribute:

public class MyDisplayName : DisplayNameAttribute
{
    public int DbId { get; set; }

    public MyDisplayName(int DbId)
    {
        this.DbId = DbId;
    }


    public override string DisplayName
    {
        get
        {
            // Do some db-lookup to retrieve the name
            return "Some string from DBLookup";
        }
    }
}

public class TestModel
{
    [MyDisplayName(2)]
    public string MyTextField { get; set; }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消