|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在实现ERP等高端的ASP应用时,用户需要提供核心的经营资料,需要ASP商有很高的信用度。楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。递回白色字体就是啦,若有不分明的话,请与我接洽QQ:20028205
usingSystem;
usingSystem.Text;
usingSystem.IO;
usingSystem.Xml;
usingSystem.Xml.XPath;
usingSystem.Web;
usingSystem.Collections;
namespaceGST.Common.Xml
{
///<summary>
///失掉站点内的一切Aspx文件,并存进Xml文件中
///</summary>
publicclassGetAllFiles
{
publicGetAllFiles()
{
//
//TODO:在此处增加机关函数逻辑
//
}
///<summary>
///更新Xml文件的某个支点
///</summary>
///<paramname="Files"></param>
///<paramname="Desc"></param>
publicvoidUpdateXmlFile(stringFiles,stringDesc,stringFileSrc)
{
XmlDocumentdoc=newXmlDocument();
doc.Load(HttpContext.Current.Server.MapPath(FileSrc));
XmlNodeNode=doc.SelectSingleNode("/AspxFiles/File[text()=""+Files+""]");
if(Node!=null)
{
Node.Attributes[0].InnerText=Desc;
}
doc.Save(HttpContext.Current.Server.MapPath(FileSrc));
}
///<summary>
///写进Xml文件
///</summary>
publicvoidWriteXmlFile(stringFileSrc,ArrayListal)
{
XmlDocumentdoc=newXmlDocument();
doc.Load(HttpContext.Current.Server.MapPath(FileSrc));
XmlElementElement=doc.DocumentElement;
boolUpdate=false;
foreach(objectobjinal)
{
XmlNodeNode=doc.SelectSingleNode("/AspxFiles/File[text()=""+obj.ToString()+""]");
if(Node==null)
{
XmlElementElementChild=doc.CreateElement("File");
ElementChild.InnerText=obj.ToString();
XmlCDataSectioncdata=doc.CreateCDataSection(obj.ToString());
XmlAttributeattribute=doc.CreateAttribute("Desc");
attribute.Value=cdata.Value;
ElementChild.Attributes.Append(attribute);
Element.AppendChild(ElementChild);
Update=true;
}
}
if(Update)
doc.Save(HttpContext.Current.Server.MapPath(FileSrc));
}
///<summary>
///前往一切的Aspx文件
///</summary>
///<returns>StringArray</returns>
publicvoidGetAllAspxFile(stringWebPath,refArrayListal)
{
string[]AspxFiles=Directory.GetDirectories(WebPath);
if(AspxFiles.Length>0)
{
foreach(stringAspFileinAspxFiles)
{
foreach(stringInnerFileinDirectory.GetFiles(AspFile))
{
if(Path.GetExtension(InnerFile).ToLower()==".aspx")
{
stringFileName=Path.GetFileName(InnerFile);
al.Add(FileName);
}
}
GetAllAspxFile(AspFile,refal);
}
}
else
{
string[]Files=Directory.GetFiles(WebPath);
foreach(stringAspFileinFiles)
{
if(Path.GetExtension(AspFile).ToLower()==".aspx")
{
stringFileName=Path.GetFileName(AspFile);
al.Add(FileName);
}
}
}
}
}
}
</p>使用filesystemobject,可以对服务器上的文件进行操作,浏览、复制、移动、删除等。有ado的支持,asp对数据库的操作非常得心应手。你甚至可以像使用本地数据库那样,管理远程主机上的数据库,对表格、记录进行各种操作。 |
|