A Complete URL Rewriting Solution for ASP.NET 2.0
Published November 6, 2009 Uncategorized Leave a CommentTags: ASP.net
The ASP.NET 2.0 TreeView Control
Published October 29, 2009 Uncategorized Leave a CommentTags: ASP.net
Refer to : http://www.15seconds.com/issue/041117.htm
AJAXIFY YOUR WEB PAGES USING JQUERY
Published October 27, 2009 Uncategorized Leave a CommentTags: jQuery
Useful jQuery plugins List
jQuery Intellisense in VS 2008
Published October 27, 2009 Uncategorized Leave a CommentTags: jQuery, visual studio
Insert [content data] into HTML control – XSLT
Published October 23, 2009 Uncategorized Leave a CommentTags: Umbraco, 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
Published October 21, 2009 IT Leave a CommentTags: CMS, Umbraco
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
Published October 21, 2009 Uncategorized Leave a CommentTags: script, vb
Running Scripts with the CScript and WScript Utilities
Published October 21, 2009 Uncategorized Leave a CommentTags: script, vb