|
|
|
ขอโค้ด ASP.NET ด้วย c# ในการแสดง session ชื่อผู้ใช้งาน ที่ลงชื่อเข้าใช้มาในระบบ ให้แสดงได้ทุกหน้าที่ |
|
|
|
|
|
|
|
ใช้ Master Page ครับ
Session["strUser"]
|
|
|
|
|
Date :
2010-09-01 06:17:09 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ล็อกอิน Code (PHP)
<?
include_once("connect.php");
$sql = "select * from login where logname='$logname' and pw='$pw' ";
$dbquery = mysql_db_query($dbname, $sql);
$result = mysql_fetch_array($dbquery);
$username = $result[username];
$num_rows = mysql_num_rows($dbquery);
if($num_rows==1)
{
$_SESSION['namelog'] = "$username";
}
else
{
echo "Username หรือ Password ไม่ถูกต้อง";
}
?>
แต่ถ้าหากว่าเป็น ASP.NET C# จะไปดึงเอาฟิวด์ username มาได้ยังไงครับ
ปล. สมมุติว่าฐานข้อมูลมี 3 ฟิวด์ คือ logname,pw และ username
|
|
|
|
|
Date :
2010-09-03 17:02:30 |
By :
accio |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูใน tutorial ง่ายกว่าไหม
|
|
|
|
|
Date :
2010-09-03 21:58:31 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|