-
xsl:sort
Normally, this element used with for-each and apply-templates
-
current()
The function returns a node set that has the current node as its only member. For an outermost expression, an expression not occurring within another expression, the current node is always the same as the context node. Thus,
is the same as
However, within square brackets, the current node is usually different from the context node. For example,
-
Dynamically adding control which can do async postback in UpdatePanel
Precondition, The control needs to have Id, if not the ajax clientside script can not handle it. Then see the following code.
-
defer javascript
The HTML 4 standard defines an attribute of the
-
generate script tag
<pre data-sub="prettyprint:_"> document.write("<script>"); document.write("document.write('<h2>This is the quoted script</h2>')"); document.write("</" + "script>"); //document.write("</script>"); this does not work //but you can use document.write("<\/script>"); </pre>