摘要:
select* from(select *,row_number() over(order by code) as rownumberfrom table)as tempwhere rownumber between 10 and 20 阅读全文
摘要:
$('#id').attr("href",http://www.abc.com); 阅读全文
摘要:
System.Xml.XmlNode node//得到XML的属性值node.Attributes["HotelCode"].Value;node["BasicProperty"]["Address"]得到节点下面的节点内容值得到节点的内容 /// <summary> ///得到节点值的内容,如果为Null 返回 "" /// </summary> /// <param name="node">得到指定节点的值</param> /// <re 阅读全文