gpt4 book ai didi

c# - ASP.net MVC 3错误: CS0103

转载 作者:行者123 更新时间:2023-12-03 08:03:12 26 4
gpt4 key购买 nike

我刚刚开始学习this书籍形式的ASP.NET MVC 3,并且我对其中的示例有疑问。
我总是得到这个错误

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0103: The name 'Text' does not exist in the current context


这是代码:
@Html.DropDownListFor(p => p.WillAttend, new[]
{
new SelectListItem(), Text = "Yes I'll be there", Value = bool.TrueString,
new SelectListItem(), Text = "No, I can't come", Value = bool.FalseString

}, "Chose option")
有人知道如何解决这个问题吗?

最佳答案

您忘记了一些{}:

@Html.DropDownListFor(p => p.WillAttend, new[]
{
new SelectListItem(){ Text = "Yes I'll be there", Value = bool.TrueString},
new SelectListItem(){ Text = "No, I can't come", Value = bool.FalseString}

}, "Chose option")

关于c# - ASP.net MVC 3错误: CS0103,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7140141/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com