サーバー側の変数をクライアントに渡すことは、それほど大雑把ではありません
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% 確信しているわけではありません......