因此,我想将URL字符串转换为具有“播放”名称的超链接,该超链接会将用户带到视频网站链接。

这是我的视频链接的类别。

public class Video
{
    public int Id { get; set; }
    public string Video_name { get; set; }
    [Display(Name = "Date added")]
    [DataType(DataType.Date)]
    [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
    public Nullable<System.DateTime> Dateadded { get; set; }
    public string Tag { get; set; }
    [Display(Name = "Visits")]
    public int Video_Visits { get; set; }
    public string URL { get; set; }
    [Display(Name = "User Name")]
    public string UserName { get; set; }
    public string User_Id { get; set; }
    [Display(Name = "Parental Rating")]
    public string Parental_rating { get; set; }
    public Nullable<int> Rating { get; set; }

    public virtual ApplicationUser User { get; set; }
    public virtual Rating Rating1 { get; set; }
    public virtual P_rating P_rating  { get; set; }

}

我认为我要添加
<a href="@testing2.Models.Video.URL">play</a>

但收到错误:



有人能帮忙吗?

最佳答案

在 View 页面中将Video类设置为模型。

您的链接将为

<a href="@Model.URL">play</a>

关于asp.net-mvc - 非静态字段,方法或属性需要对象引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24166348/

10-10 10:44