gpt4 book ai didi

c# - Asp.Net MVC 5 中的 HtmlEncoder 错误

转载 作者:太空狗 更新时间:2023-10-30 00:30:39 26 4
gpt4 key购买 nike

我在编译时遇到这个错误:错误-CS0103“名称‘HtmlEncode’在当前上下文中不存在”

我使用的是 Visual Studio 2015 社区版和 MVC。

代码是:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;

namespace MvcMovie.Controllers
{
public class HelloWorldController : Controller
{
//
// GET: /HelloWorld/

public string Index()
{
return "This is my default action...";
}

//
// GET: /HelloWorld/Welcome/

public string Welcome(string name, int numTimes = 1)
{
return HtmlEncoder.Default.HtmlEncode(
"Hello " + name + ", NumTimes is: " + numTimes);
}
}
}

我找不到要添加到引用的 HtmlEncoder。
你能看出我做错了什么吗?

谢谢!

最佳答案

试试这个:

    HttpUtility.HtmlEncode("Hello " + name + ", NumTimes is: " + numTimes);

关于c# - Asp.Net MVC 5 中的 HtmlEncoder 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34098938/

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