I need to use the underscore template instead of the default KnockoutJS template engine due to performance. However, since I\'m in an asp.net environment th
The _.templateSettings configuration is global, so just add the block
_.templateSettings
_.templateSettings = { interpolate : /\{\{(.+?)\}\}/g };
anywhere earlier in your code.