|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在实现ERP等高端的ASP应用时,用户需要提供核心的经营资料,需要ASP商有很高的信用度。楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。谈天室|革新|无革新|谈天室|革新|无革新先复杂申明下
服务端
用程序天生必要的XML文件
客户端
使用XMLHTTP大概DSO(注重形态)准时革新必要的数据
绝对来讲DSO能够映照成recordset操纵对照复杂
以下是我复杂写着玩的器材不是完全部分并且非常大略
只是代码片断但作为手艺参考已充足
必要MSXML4.0
服务端我写了两个机关函数分离是谈天内容谈天用户
<scriptlanguage="JScript"runat="server">
functionSLIGHTBOYChat()
{
this.ID;
this.XMLDOMElement=Server.CreateObject("Msxml2.FreeThreadedDOMDocument.4.0")
this.Add=function(Name,Content,Append)
{
varroot=this.XMLDOMElement.documentElement;
varnewItem=this.XMLDOMElement.createElement("Item");
varnewItemName=this.XMLDOMElement.createElement("Name");
varnewItemNameValue=this.XMLDOMElement.createCDATASection(Name);
newItemName.appendChild(newItemNameValue)
varnewItemContent=this.XMLDOMElement.createElement("Content");
varnewItemContentValue=this.XMLDOMElement.createCDATASection(Content);
newItemContent.appendChild(newItemContentValue)
varnewItemAppend=this.XMLDOMElement.createElement("Append");
newItemAppend.text=Append;
newItem.appendChild(newItemName);
newItem.appendChild(newItemContent);
newItem.appendChild(newItemAppend);
if(root.childNodes.length>10)
{
root.removeChild(root.firstChild)
}
root.appendChild(newItem)
}
this.Save=function()
{
Application("ChatContent")=this.XMLDOMElement.xml;
}
this.GUID=function(PushGUID)
{
if(PushGUID.Count>0)
{
this.ID=PushGUID;
}
else
{
this.ID="";
}
}
this.Xml=function()
{
if(this.ID!="")
{
varXMLDOMElementString="<?xmlversion="1.0"encoding="gb2312"?><Chat>";
varitems=Chat.XMLDOMElement.selectNodes("//Item[Append>"+this.ID+"]")
for(varitem=items.nextNode();item;item=items.nextNode())
{
XMLDOMElementString+=item.xml;
}
XMLDOMElementString+="</Chat>";
if(items.length>0)
{
returnXMLDOMElementString;
}
else
{
return;
}
}
else
{
returnthis.XMLDOMElement.xml.replace("<?xmlversion="1.0"?>","<?xmlversion="1.0"encoding="gb2312"?>");
}
}
this.Load=function()
{
if(Application("ChatContent")==""|typeof(Application("ChatContent"))=="undefined")
{
Application("ChatContent")="<?xmlversion="1.0"encoding="GB2312"?><Chat><Item><Name>slightboy</Name><Content>接待^^</Content><Append>"+newDate().getTime()+"</Append></Item></Chat>";
}
this.XMLDOMElement.loadXML(Application("ChatContent"));
}
this.Empty=function()
{
Application("ChatContent")="<?xmlversion="1.0"encoding="GB2312"?><Chat><Item><Name>slightboy</Name><Content>接待^^</Content><Append>"+newDate().getTime()+"</Append></Item></Chat>";
}
this.Load();
}
functionSLIGHTBOYChatList()
{
this.XMLDOMElement=Server.CreateObject("Msxml2.FreeThreadedDOMDocument.4.0")
this.Add=function(Name,Level)
{
varroot=this.XMLDOMElement.documentElement;
varnewItem=this.XMLDOMElement.createElement("Item");
varnewItemName=this.XMLDOMElement.createElement("Name");
varnewItemNameValue=this.XMLDOMElement.createCDATASection(Name);
newItemName.appendChild(newItemNameValue)
varnewItemLevel=this.XMLDOMElement.createElement("Level");
varnewItemLevelValue=this.XMLDOMElement.createCDATASection(Level);
newItemLevel.appendChild(newItemLevelValue)
varnewItemAppend=this.XMLDOMElement.createElement("Append");
newItemAppend.text=Append;
newItem.appendChild(newItemName);
newItem.appendChild(newItemLevel);
root.appendChild(newItem)
}
this.Save=function()</p>在实现ERP等高端的ASP应用时,用户需要提供核心的经营资料,需要ASP商有很高的信用度。楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。 |
|