摘要:
use Northwind go drop table backuptable go create table backuptable ( -- Eid int identity(1,1), Eid int, Ename varchar (50) not null , --constraint pk_Eid primary key (Eid), ) go declare Ord... 阅读全文
摘要:
js操作XML文件的例子 var xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async = false; xmlDoc.load("Tipsxml/tips.xml"); var firstinfo=xmlDoc.documentElement.selectSingleNode("Class[@name='文章管理... 阅读全文