将服务器端变量传递给客户端并不太粗糙
var Variable = '<%= ServerVaraible %>'
ServerVaraible 是在代码隐藏中公开访问的东西,很容易
现在可以说我有一个静态类
namespace Server.Helpers
{
public static class QueryStringConstants
{
public static string CARID = "carId";
}
}
为什么我不能去:var Variable = '<%= Server.Helpers.QueryStringConstants.CARID %>'
如果我这样做,我会收到一条错误消息
'System.Web.HttpServerUtility' does not contain a definition for 'Helpers' and no extension method 'Helpers' accepting a first argument of type 'System.Web.HttpServerUtility' could be found
我确信我要宣布一些事情,但我不是 100% 确定什么......