runat="client" 是什么意思(如果存在的话)

What the meaning of runat="client" (If it exist)

我正在使用安装了 ReSharper 的 VisualStudio 2017 在我的 MVC 项目中编写一个 ASPx 页面,当时,编写一个 runat 服务器部分,ReSharper 在 runat 属性中给了我两个选项:服务器和客户端。 runat="client"是什么意思?这是 ReSharper 的错误吗?

你好,我对 ReShaper 一无所知,但在 ASP 中,选项 'runat="server"' 用于在后面的代码 (CS/VB) 中进行访问,例如:

*ASP page
<asp:Label id"label" runat="server"></asp:Label>

CS page
label.Text = "Here you can change label text";

VB page
label.Text = "Here you can change label text"

asp.net 中不存在您所说的选项 'runat="client"',我已经搜索过了,它存在于其他语言中,但不存在于 asp 中。

希望有用!

此致