search for: mycategory

Displaying 2 results from an estimated 2 matches for "mycategory".

2007 Sep 18
4
Prototype.js and Multidimensional Arrays
...ay("hamburg","berlin","hannover"); myCheckBox2[''Art''] = new Array("programmierung","support"); myCheckBox2[''Kenntnisse''] = new Array("xhtml","perl","php","java"); for (var mycategory in myCheckBox2){ document.write(mycategory+''<br>''); for (i=0;i<myCheckBox2[mycategory].length;i++){ document.write(myCheckBox2[mycategory][i]+''<br>''); } } </script> you can test it and u will get this result: Ort hamburg berlin hannove...
2006 Mar 13
0
noob: Is there a "root" for IIS virtual dir?
...all a rails app as well as typo to virtual directories of the same web site in IIS 6. Problem is that URL''s in the browser page are missing virtual directory "root": For example, with typo installed in "/blog". Typo link in browser: http://hostname/articles/category/mycategory Typo link should say: http://hostname/blog/articles/category/mycategory Have I missed a configuration setting (within rails)? Many web application configurations have a "root" to set a base URL, in this case it would be "/blog". Is that available in rails? Thanks. -- Poste...