我在我的MVC项目中使用安装了ReSharper的VisualStudio 2017编写ASPx页面,编写runat服务器部件时,ReSharper在runat属性中给了我两个选项:server和client。 runat =" client&#34 ;?的含义是什么?这是ReSharper的错误吗?
答案 0 :(得分:2)
您好我对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"
你正在谈论的'runat =“client”'选项在asp.net中不存在,我已经搜索过了,它存在于其他语言中但不存在于asp中。
希望它有用!
此致