Archive for May, 2010
Script Tags in Asp.Net MVC
Just a quick tip really, when adding Javascript tags to you Asp.Net MVC master page use the following syntax rather than hard coding the path:
[sourcecode language='c#']
[/sourcecode]
This allows the Asp.Net engine to resolve the path and is more reliable than hard coding it. Thanks to Steve Fenton for this gem.