|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来;ado|程序|字符串页面query.aspx能够依据传送的id参数在数据库中举行查询,如:
http://gqa-eric-lv/aspnet/MyBBSQuery/query.aspx?id=26
程序中可使用this.Request.QueryString["ID"]猎取查询字符串ID的值,以下例:
SqlConnectioncoreDB=newSqlConnection();
coreDB.ConnectionString="workstationid="GQA-ERIC-LV";packetsize=4096;integratedsecurity=SSPI;"+
"datasource="gqa-eric-lv";persistsecurityinfo=False;initialcatalog=CoreDB";
intQueryID=3;
stringidStr=TextBox2.Text.Trim();
QueryID=Convert.ToInt32(this.Request.QueryString["ID"]);
if(QueryID<0||TextBox2.Text.Trim()!="")return;
stringmySelectQuery="SELECTID,Title,ContentFROMmyBBSwhereid="+QueryID;
SqlCommandmyCommand=newSqlCommand(mySelectQuery,coreDB);
coreDB.Open();
SqlDataReadermyReader=myCommand.ExecuteReader();
try
{
while(myReader.Read())
{
TextBox1.Text=myReader["title"].ToString();
TextBox2.Text=myReader["ID"].ToString();
TextBox3.Text=myReader["content"].ToString();
}
}
finally
{
myReader.Close();
coreDB.Close();
}
</p>Access是一种桌面数据库,只适合数据量少的应用,在处理少量数据和单机访问的数据库时是很好的,效率也很高。但是它的同时访问客户端不能多于4个。access数据库有一定的极限,如果数据达到100M左右,很容易造成服务器iis假死,或者消耗掉服务器的内存导致服务器崩溃。 |
|