A. 如何製作帶有資料庫的網頁
這個問題問得有點雷人
首先要建立資料庫
再要寫打資料庫的程序
比如:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>
<%
dim conn
dim connstr
dim db:db="db\31231123.mdb"
dim dbset:setdb = 1
Set conn = Server.CreateObject("ADODB.Connection")
select case setdb
case "1"
connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath(""&db&"")
case "2"
connstr="driver={Microsoft Access Driver (*.mdb)};dbq=" & Server.MapPath(""&db&"")
case "3"
connstr="driver={sql Server};server=localhost;UID=sa;PWD=123;database=PW_SYS_data"
case else
connstr= "Dns=PW_SYS_Data"
end select
if err.number<>0 then
err.clear
set conn=nothing
response.write "wrong"
Response.End
else
conn.open connstr
if err then
err.clear
set conn=nothing
response.write "wrong"
Response.End
end if
end if
sub CloseConn()
conn.close
set conn=nothing
end sub
%>
然後再寫對數據進行操作的程序
B. 網頁開發:文章列表的資料庫怎麼設計
動態網頁只要一個頁面就行了。
文章表可以這樣設計(因為你的要求簡單,就用簡單方法)
ID
文章主題
文章內容
作者
發表時間
ID是唯一的。
列表頁列出所有的文章,點擊每個鏈接進入文章詳情頁,用ID查找詳細信息並在詳情頁顯示
祝好運,望採納。
C. 採用idea開發,資料庫用mysql網頁設計用html的好處
如下:
·減少開發時間。你可以用外部CSS文件來控制整個設計,避免像這樣的重復代碼。
·降低維護時間。改變某個外部CSS文件的變化就可以影響整個網站。
·提高設計能力。有一些高級設計功能CSS可以實現,而HTML不行。
·開發更清楚的代碼。XHTML將格式化、結構和行為分開,更容易閱讀和維護。
·用單獨的樣式表.使其能在多種格式下傳遞同樣的XHTML內容。一個XHTML文件可以適應屏幕、手持設備和列印顯示。
開發更穩定的代碼。標准兼容的代碼可能適用於未來版本的瀏覽器,也適用於老的瀏覽器。
Web標准幫助企業:
·節省開發成本。通過減少網站開發時間,可大大降低開發成本。
·節省伺服器帶寬成本。因為結構、格式化和行為分別放置在標准兼容的網站上,當用戶點擊鏈接頁面時.CSS和JavaScript只需要下載一次。
·幫助開發人員按時交付。當開發人員能夠有效地建立和維護網站,就更有可能趕上緊迫的最後期限。
D. 網頁製作——如何實現調用資料庫
首先,頁面1中用表單提交數據你要查詢的數據
代碼參考:<form action="對應的servlet類" metohd="post" name="form1">
接著,建立一個selvet類,繼承HttpServlet,在selvet類的doPost()方法里寫入查詢資料庫的代碼,主要利用request來獲取頁面1中的參數,通過reponse來給頁面2傳輸資料庫查詢的結果
代碼參考:
Connection con=null;
Statement stmt=null;
ResultSet rs=null;
String name=request.getParameter("name");
Class.forName("oracle.jdbc.driver.OracleDriver");
con = DriverManager.getConnection( "jdbc:oracle:thin:@localhost:test1", "test","stst");
stmt = conn.createStatement();
rs = stmt.executeQuery("select ename,empno,deptno from emp where empno like \'"+name+"');
reponse.setContentType("text/html;charset=GB2312");
PrintWriter out=response.getWritertr();
out.println("<html> <body>");
out.print("<table border>");
out.print("<tr><td colspan=8 align=center>用戶數據</td></tr>");
out.print("<tr>");
while(rs.next)
{
our.print("<tr>");
our.print("<td>"+rs.getString("ename")+</td>);
our.print("<td>"+rs.getString("emono")+</td>);
our.print("<td>"+rs.getString("depno")+</td>);
our.print("</tr>");
}
out.print("</tr>");
out.print("</table>");
out.print("</body> </html>");
out.close();
rs.close();
stmt.close();
con.close();
E. 如何製作簡易網頁和鏈接資料庫 (急)
1、安裝伺服器,例如Apache
2、頁面源代碼中連接資料庫,查詢,顯示等等
注意,在你調試時,資料庫和伺服器都必須是在運行狀態。