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

Windows Scripting: Command Line VBScript

  • cscript dos_command.vbs
  • cscript /nologo dos_command.vbs

Outputting to the DOS Screen

option explicit
dim text
dim output
set output = wscript.stdout
text = “This is a VBScript Program”
output.writeline text

Refer: http://windows-programming.suite101.com/article.cfm/windows_scripting_command_line_vbscript

Next Page »


 

November 2009
S M T W T F S
« Oct    
1234567
891011121314
15161718192021
22232425262728
2930  

Categories