Ubuntu 9.04 live USB開發

A Complete URL Rewriting Solution for ASP.NET 2.0

The ASP.NET 2.0 TreeView Control

AJAXIFY YOUR WEB PAGES USING JQUERY

Useful jQuery plugins List

Useful jQuery plugins List

http://brandonaaron.net/code

jQuery Intellisense in VS 2008

Insert [content data] into HTML control – XSLT

The first example is more verbose than the second, as the second uses the shortcut method of including commands inside existing tags such as the anchor (a) tag.  The first example uses the xslt commands to inject the attribute into the preceding tag

<ul>

<xsl:for-each select=”$currentPage/node”>

<li><a>

<xsl:attribute name=”href”>

<xsl:value-of select=”umbraco.library:NiceUrl(current()/@id)”/>

</xsl:attribute>

<xsl:value-of select=”current()/@nodeName”/>

</a></li>

</xsl:for-each>

</ul>

or

<ul>

<xsl:for-each select=”$currentPage/node”>

<li><a href=”{umbraco.library:NiceUrl(current()/@id)}”>

<xsl:value-of select=”current()/@nodeName”/>

</a></li>

</xsl:for-each>

</ul>

Useful Umbraco Introduction for beginners

This is indeed a very valuable article for beginners. (Which is surprisingly very difficult to find the resources for beginners)

Refer: http://umbracocms.blogspot.com/2009/08/quick-take-review-umbraco-web-content_14.html

VBScript Using XmlHttp/ Internet Explorer

Running Scripts with the CScript and WScript Utilities

Next Page »