當前位置:首頁 » 操作系統 » 帶資料庫的登錄源碼

帶資料庫的登錄源碼

發布時間: 2022-07-30 22:40:13

❶ 用戶登錄 asp+sql源碼

資料庫建立一個表admin 3個列:Username Passwd oskey(用戶級別)
ODBC數據源創建一個sql的數據源與你建立的資料庫連上。
conn.asp
<%
set conn=server.createobject("adodb.connection")
conn.connectionstring="DSN=ccsw;uid=sa;pwd=1234"
conn.open
%>
index.asp
<html>

<head>
<title>管理登錄</title>
<link rel="stylesheet" href="style.CSS">
<style type="text/css">
<!--
.style1 {color: #9966FF}
.style2 {
font-size: 12pt;
font-weight: bold;
color: #9966FF;
}
.style3 {
font-size: 12pt;
color: #0033CC;
}
.style4 {color: #0000CC}
-->
</style>
</head>

<body>
<div align="center"><center>

<table border="0" cellspacing="1" width="90%">
<tr>
<td> <form method="post" action="chklogin.asp">
<table width="300" border="0" cellspacing="1" cellpadding="0" align="center" bgcolor="#000000">
<tr bgcolor="#FFFFFF">
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td height="30" colspan="2" align="right"><div align="center" class="style1 style3"><strong>管理登錄</strong></div></td>
</tr>
<tr>
<td width="33%" align="right" height="30"><span class="style4">用戶名:</span></td>
<td width="67%">
<input name="UserName" maxlength="20" class="smallInput" size="20">
</td>
</tr>
<tr>
<td width="33%" align="right" height="30"><span class="style4">密 碼:</span></td>
<td width="67%">
<input type="password" name="Passwd" maxlength="16" class="smallInput"
size="20">
</td>
</tr>
<tr>
<td colspan="2" height="15"></td>
</tr>
</table>
</td>
</tr>
<tr align="center" bgcolor="#FFFFFF">
<td height="31" bgcolor="#9999FF">
<input type="submit" name="Submit" value="確定" class="buttonface">

<input type="reset" name="Submit2" value="重寫" class="buttonface"></td>
</tr>
</table>
</form>
<p align="center">後台登錄</td>
</tr>
</table>
</center></div>
</body>
</html>
檢查用戶界面:
<!--#include file=articleconn.asp-->
<%
dim rs
UserName1=request.form("UserName")'獲得登錄界面輸入的用戶名
Passwd1=request.form("PassWd")''獲得登錄界面輸入的密碼
set rs=server.CreateObject("ADODB.RecordSet")'建立資料庫連接
rs.open "select * from admin where UserName='" & UserName1 & "' and passwd='"&passwd1&"'",conn,1 '查詢該用戶名和密碼是否存在
if rs.eof or rs.bof then '當沒有符合篩選結果時,則執行下面的句子
response.write "<script language=javascript>"
response.write "alert('用戶或密碼不對!');"
response.write "javascript:history.go(-1);"
response.write "</script>" '用javascript腳本提示用戶
else '如果符合條件的時候
session("UserName")=RS("Username") '新建session,值等於表單傳來的用戶名
session("KEY")=rs("OSKEY")
response.write"<SCRIPT language=JavaScript>alert('登錄成功');"
response.write"this.location.href='admin.asp';</SCRIPT>"
end if '結束if語句
%>

❷ 求連接資料庫的登陸注冊模塊的源代碼,eclipse+Mysql+jsp+java。

懂Servlet和JavaBean嗎?如果你懂得話,那就可以用MVC模塊,不懂的話那就用純JSP了!

❸ 求一份使用mysql資料庫的jsp注冊登錄源碼

這種的太多了

❹ 求一段mysql資料庫的有關登錄的代碼

這個太簡單了吧?
你用的什麼語言啊?
我反正用的是java判斷
首先你在頁面中用form傳入值 action 寫入第二個頁面的名字 比如checklog.jsp
然後創建一個check.jsp文件
傳入的方式request.getParemeter("uname:");
..
調用一個check.java的方法 傳入用戶名和密碼
寫一個sql的語句就可以了啊 很復雜么?
select uid from 表名 where uname="" and pswd=""
這個是最簡單的

❺ 求詳細php網站登陸代碼,最好是帶資料庫連接以及查詢

你好,因為沒有實例,你這樣要求別人很難幫你寫出來,就算寫出來了,你也不一定可以使用,我建議你可以到php100上系統的學習一下,而且在教程的裡面就有你需要的實代碼,如果你確實急用,就到上面找吧,我以前在上面自學的時候曾經見到過這個實例源代碼的。

網址是:www-php100-com
或者自己度娘「php100」

❻ php寫一個登陸界面並且保存到資料庫,實現1天免登陸,求源碼

login.php
<!doctype html public "-//W3C//dtd html 4.01 transitional//en" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>

<body>
<form name="form1" method="post" action="confirm.php">
<p>用戶名:<input type="text" name="user"></p>
<p>密碼:<input type="password" name="pwd"></p>
<p><input type="submit" name="b1"></p>
</form>
</body>
</html>

❼ asp.net(C#)鏈接SQL資料庫的登陸頁面和注冊頁面源代碼

ASP.NET C#版本,連接SQL SERVER資料庫,
登錄代碼,可以參考本例:
http://hi..com/44498/blog/item/59db5da17d24c28146106478.html
後面的幾篇,也有注冊的原型。

❽ 求Java 注冊登錄 連接到資料庫的源代碼。

package cc.icoc.javaxu.;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;public class MySQLOprea { /** * 增加記錄 INSERT INTO 表名(欄位名,欄位名) VALUES (值,值); * 刪除記錄 DELETE FROM 表名 WHERE 條件() * 修改記錄 UPDATE 表名 SET 欄位=值,欄位=值 WHERE 條件 * 查詢記錄 SELECT 欄位,欄位 FROM 表名 WHERE 條件 */ ResultSet rs = null; Connection conn = null; Statement statement = null; //鏈接 public Connection connSQL() { String DRIVER = "com.mysql.jdbc.Driver";// 資料庫驅動 String URL = "jdbc:mysql://localhost:3306/mydata?useUnicode=true&characterEncoding=gb2312";// String DBNAME = "root";// 用戶名 String DBPASS = "341341";// 密碼 try { Class.forName(DRIVER).newInstance();// 注冊驅動 conn = DriverManager.getConnection(URL, DBNAME, DBPASS); statement = conn.createStatement(); } catch (Exception e) {} return conn; } //增 /** * 插入新記錄的操作 * @param table 表名 * @param userName 插入的用戶名 * @param passWord 插入的用戶密碼 * @return true代表插入成功,false代表插入失敗 */ public String insert(String table, String userName, String passWord) { connSQL(); String s = "注冊成功"; try { String insert = "insert into "+table+"(userName,passWord) values ("+"'"+userName+"'"+","+"'"+passWord+"'"+")"; statement.executeUpdate(insert); closeDB(); } catch (Exception e) { // TODO: handle exception s = "注冊失敗"+e.toString(); } return s; } //刪 public void delete(String table, String whereValue) throws SQLException { String delete = "Delete from "+table+" where userName = "+whereValue; statement.executeUpdate(delete); } //改 public void update(String table, String whereValue , String newValue) throws SQLException { String update = "Update "+table+" set passWord ="+newValue+" where userName ="+whereValue; statement.executeUpdate(update); } //查 public String query(String table , String whereValue1 ,String whereValue2, String whatCol1, String whatCol2) throws SQLException { connSQL(); String query = null;// ResultSet set= null; try { query = "select "+whatCol1+","+whatCol2+" from "+table +" where "+whatCol1+"="+'"'+whereValue1+'"'+" and "+whatCol2+"="+'"'+whereValue2+'"'; rs = statement.executeQuery(query); closeDB(); } catch (Exception e) { // TODO: handle exception return "false exception:"+e.toString(); } if(rs.next()) { return "true:"; } return "false:"; } private void closeDB() { // TODO Auto-generated method stub try { if(rs != null) { rs.close(); } if(statement != null) { statement.close(); } if(conn != null) { conn.close(); } } catch (Exception e) { // TODO: handle exception System.out.println("資料庫關閉時出現異常"); } }}

熱點內容
手機上傳播病毒 發布:2025-01-18 13:49:20 瀏覽:503
空調壓縮機電路 發布:2025-01-18 13:42:42 瀏覽:545
空間訪問的記錄恢復 發布:2025-01-18 13:26:19 瀏覽:999
雲伺服器mysql怎麼連接 發布:2025-01-18 13:26:08 瀏覽:648
主動加密 發布:2025-01-18 13:25:28 瀏覽:815
哥手機的密碼是什麼 發布:2025-01-18 13:24:36 瀏覽:466
伺服器託管用什麼寬頻 發布:2025-01-18 13:24:00 瀏覽:234
android谷歌地圖 發布:2025-01-18 13:22:59 瀏覽:551
入門反編譯 發布:2025-01-18 13:13:07 瀏覽:846
蒙皮演算法 發布:2025-01-18 12:57:53 瀏覽:550