In ASP.NET web forms, you can use this component to extract a JS file that's embedded in a DLL: http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.getwebresourceurl.aspx. This would also work in ASP.NET MVC since it used the ASP.NET framework.

Since Razor isn't leveraging the ASP.NET framework, is it even possible to extract a resource out of an assembly? Maybe by dynamically constructing the Page class? Or is it not supported?

Thanks.

link|improve this question

I am guessing you aren't working with ASP.NET Web Pages since that is something different from ASP.NET MVC. It is typically seen as the system used by WebMatrix. Assuming you are actually working in ASP.NET MVC with the Razor view engine, you can probably find an answer here: stackoverflow.com/questions/5665279/… – patridge Nov 3 '11 at 19:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.