真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ASP轉(zhuǎn)換到JSP中對于相同功能處理的比較分析

這篇文章主要介紹ASP轉(zhuǎn)換到JSP中對于相同功能處理的比較分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站制作、網(wǎng)站建設(shè)與策劃設(shè)計,湘西土家族網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:湘西土家族等地區(qū)。湘西土家族做網(wǎng)站價格咨詢:18980820575

一、目的:

通過ASP與JSP對于相同功能處理的比較,研究和實現(xiàn)從ASP到JSP的轉(zhuǎn)換。從實際應(yīng)用考慮,我們選取了與數(shù)據(jù)庫相關(guān)的一些有代表性的功能,包括三個具體功能:查詢、添加以及刪除。

二、頁面功能介紹:

1. 數(shù)據(jù)庫名稱以及表名稱(共用)

database name:pdtdb  table name:pdtinfotable

所用表結(jié)構(gòu)(共用)

create table pdtinfotable  (   ID     char(20)    not null,   ProductName    char(20)    ,   primary key(ID)  )

2.各頁面功能說明

***個index,addaction用2個頁面:

 index:  select * from table             submit insert value(ID, ProductName)   go to  "addaction" addaction:  get parameter: "ID" and "ProductName";            Do the "insert function " go back "index"

第二個search用1個頁面 :

select * from table where  ID= parameter "ID" or ProductName= paramenter "ProductName"     submit "ID" and "ProductName"

第三個delete,deleteaction用2個頁面:

delete: select * from table

每個行后面又一個超鏈接(鏈到deleteaction).

deleteaction: delete from pdtinfo where ID= parameter "ID" ,go back "delete"

3.JavaBean

使用 tax.mydb.class

三、代碼詳細比較:

ASP到JSP,index:

strConnection = "DSN=pdtdb;Database=pdtdb;" Set objConn=Server.CreateObject("ADODB.Connection")  objConn.Open strConnection  Set objRS=Server.CreateObject("ADODB.Recordset")  Set objRS.ActiveConnection=objConn

ASP到JSP,addaction

strConnection = "DSN=pdtdb;Database=pdtdb;" Set objConn=Server.CreateObject("ADODB.Connection")  objConn.Open strConnection  Set objRS=Server.CreateObject("ADODB.Recordset")  Set objRS.ActiveConnection=objConn

ASP到JSP,search:

strConnection = "DSN=pdtdb;Database=pdtdb;" Set objConn=Server.CreateObject("ADODB.Connection")  objConn.Open strConnection  Set objRS=Server.CreateObject("ADODB.Recordset")  Set objRS.ActiveConnection=objConn

ASP到JSP,delete

strConnection = "DSN=pdtdb;Database=pdtdb;" Set objConn=Server.CreateObject("ADODB.Connection")  objConn.Open strConnection  Set objRS=Server.CreateObject("ADODB.Recordset")  Set objRS.ActiveConnection=objConn

ASP到JSP,deleteaction

strConnection = "DSN=pdtdb;Database=pdtdb;" Set objConn=Server.CreateObject("ADODB.Connection")  objConn.Open strConnection  Set objRS=Server.CreateObject("ADODB.Recordset")  Set objRS.ActiveConnection=objConn

以上是“ASP轉(zhuǎn)換到JSP中對于相同功能處理的比較分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站欄目:ASP轉(zhuǎn)換到JSP中對于相同功能處理的比較分析
本文來源:http://weahome.cn/article/jdeisc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部