What is the Microsoft tool or any other tool to convert the JavaScript file to .dll?
What is the microsoft tool or any other tool to convert the javascript file to dll ?
Collapse
X
-
-
You can set your JavaScript file as an embedded resource. When you do this, your JavaScript files are compiled into the .dll created for your web application; however this does complicate things a bit.
You will need to use the System.Web.Exte nsions to retrieve the JavaScript resource so that you can send the JavaScript to the browser.
Check out this MSDN article to get started Embedding a JavaScript File as a Resource in an Assembly
-Frinny -
Thanks Frinavale.... I have already tried with above link. i.e Embedding a javascript file as a Resource in an Assembly. That is not working properly .Comment
Comment