Reputation: 3200
Is it possible to compile the js file in asp.net or asp.net mvc like to support server side variables for example globalization or any other variables?
Upvotes: 1
Views: 881
Reputation: 1038780
You may take a look at RazorJs. It also has a NuGet package available.
Upvotes: 1
Reputation: 13115
Spark View Engine supports this and actually works very well for this.
It allows you to use ~/
in your resource files URLs and translates it to the site root.
Otherwise you could just write a Controller action that parses (and maybe compresses) those resource files for you. This can be made easy by using something like Packer.
Upvotes: 0