DCSIMG
February 2008 - Posts - Client-Side with Basil Goldman

February 2008 - Posts

26 February 2008
Understand prototype in JavaScript (JavaScript prototype)
Understand prototype in JavaScript Hi Guy’s Sorry on this syntaxed post, but I think for understand syntax you will read. Follow my comments Hope!!! // Namespace core function core() { return this .constructor( '1.0.0.0' ); } core.prototype = { // String type version: '' , constructor... Read More...
25 February 2008
How to set absolutePath using CSS expression for AlphaImageLoader (IE) *.png files
TIP : "Set absolutePath using CSS expression for AlphaImageLoader (IE) *.png files". So what you can do to write absolute path in CSS files not like "HARD CODE" Here attached below examples CSS syntax. Before: _filter : progid:DXImageTransform.Microsoft.AlphaImageLoader(src='... Read More...
21 February 2008
ASP.NET 2 Custom Control for Google "UrchinTracker" as sample
Simple example to create ASP.NET 2 Custom Control for Google "UrchinTracker" 1) Edit Web.config file add the next code between <system.web> <pages> <controls> <add namespace ="Render.Web.UI.CustomControls" assembly ="App_Code" tagPrefix ="render"... Read More...
19 February 2008
How to write JavaScript right?
Ok guy's. We are having 3 ways (Prototype, Object and Closure) to write JavaScript but I like at once strong and beautiful "Prototype". Here attached example for Prototype way (with Namespaces, Classes and Methods as in C#). // Namespace Core function core() { return this .constructor(... Read More...
18 February 2008
JavaScript String.format & StringBuilder
// String.Format String.format = function() { var s = arguments[0]; for (var i = 0;i<arguments.length-1;i++){ var reg = new RegExp( "\\{" +i+ "\\}" , "gm" ); s = s.replace(reg,arguments[i+1]); } return s; } String.prototype.format = function() { var s = this ; for (var... Read More...
18 February 2008
Wow... People i've really started post on blogs.microsoft.co.il
Hi all. This my first blog on the microsoft blogs. I'm really happy... and I wana say "More thanks to Shai Raiten for help me to create this Blog". Thanks Shai. Read More...