DCSIMG
javascript - new { Name = ”Shay Jacoby” }

new { Name = ”Shay Jacoby” }

Maximum separation, minimum Dependencies, No Injections.

Browse by Tags

All Tags » javascript (RSS)
Javascript and Css files compressor
I was looking for a tool to compress js+css files that i can integrate into project post build event or MSBUILD. One of the popular tools is Yui , It works fine but requieres installed JVM on DEV machine and it's not simple to write a wrapper for it. I tried also the JSMin , It does the job but works for js files only. The best solution that I found is the .NET version of Yahoo.Yui.Compressor . I integrated the assembly into a console app. and wrote a method that: 1. Gets the js scripts + css...
How to call Web/WCF Services without ScriptManager
Hi, I wrote a generic client-side javascript in order to simplify the work with Web/WCF Services. Script Benefits (or Why do you need such a script...?): 1. If you use this script, You don't need to use ScriptManager or any form runat="server" in order to consume a Web/WCF Service. The unnesesery viewstate increase your page. 2. You can call a Web/WCF Service from any static HTML file. 3. Very light script (1.4 k) , the ScripyManager generated output scripts are much larger. 4. The...