|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP.NET和ASP的比较,技术上比较已经没什么可说的了.新一代在大部分程度来说当然是比旧一代好了.关键看你对所做软件的理解了.因人而定.会写的话也可能比ASP.NET写得更有效率和更方便重用在asp中有多种办法保留数据库毗连串,asp+供应了另外一种新体例:config.web。quickstart中的很多demo都是间接将毗连串写在程序中。这关于demo用处是没有成绩,但在实践利用中是不可的。
本文树模怎样利用config.web来存储毗连串。在每页asp.net中你只需用
修改来就能够间接利用了。如许做的优点一是平安,二是便利,改暗码时只需改一个中央便可。
空话少说,这里就是code:(放在该application的根目次下)
Config.web
<configuration>
<appsettings>
<addkey="MyConn"value="server=localhost;uid=sa;pwd=mypassword;Database=somedatabase"/>
</appsettings>
</configuration>
Somepage.aspx
<%@ImportNamespace="System.Data"%>
<%@ImportNamespace="System.Data.SQL"%>
<scriptlanguage="VB"runat="server">
SubPage_Load(SrcAsObject,EAsEventArgs)
ThisisthemeatofcallingtheDSNoutoftheconfig.web
Settingalocalvariabletoholdtheconnectionstringvariable
DimMyConnectionAsSQLConnection
DimConfigasHashTable
Settingalocalvariabletoholdtheconnectionstring
Config=Context.GetConfig("appsettings")
MyConnection=NewSQLConnection(Config("MyConn"))
Settingacommandobjecttoinsertsomedataintoadatabase
DimMyCommandAsSQLCommand
dimparm1asstring="SomeTextValue"
dimparm2asstring="SomeTextValue2"
DimInsertCmdAsString="Insertintotablenamevalues(@parm1,@parm2)"
Usingtheconnectionstring
MyCommand=NewSQLCommand(InsertCmd,MyConnection)
MyCommand.Parameters.Add(NewSQLParameter("@Parm1",SQLDataType.VarChar,50))
MyCommand.Parameters("@Parm1").Value=Parm1
MyCommand.Parameters.Add(NewSQLParameter("@Parm2",SQLDataType.VarChar,50))
MyCommand.Parameters("@Parm2").Value=Parm2
MyCommand.ActiveConnection.Open()
MyCommand.Execute()
MyCommand.ActiveConnection.Close()
EndSub
</script>
帮助用户快速实现各种应用服务,ASP商有整合各方面资源的能力,可在短期内为用户提供所需的解决方案。例如,典型的ERP安装,如果要在客户端安装的话需要半年到二年的时间,但是美国的一些ASP商如USI和CORIO能在90—120天内提供ERP应用方案。 |
|