|
|
|
ทำได้ไหมครับ ให้คนที่ Add link ไว้เมื่อกดเข้ามาจะ แสดงหน้าแรกก่อน ก่อน redirect ไปหน้าที่เขาเซฟลิงค์ไว้ |
|
|
|
|
|
|
|
ใช้ Session ช่วยก็ได้ครับ
Code (mail.asp)
<%
IF Request.Session("Chk") = "" Then
Response.Redirect("index.asp")
Response.End
End IF
%>
Code (index.asp)
<%
Session("Chk") = "Y"
Response.Redirect("mail.asp")
%>
|
|
|
|
|
Date :
2011-03-25 19:01:06 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2011-03-29 16:25:48 |
By :
progamer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงหน้า index.asp อะครับ
ถ้าเรา เซฟไว้หลายหน้า อย่าง
mail.asp
board.asp
list.asp
หน้า index.asp จะใส่ลิงค์ยังไงให้มันกลับไปหน้าเดิมที่เราเซฟ favorite ไว้ครับผม
|
|
|
|
|
Date :
2011-03-29 16:29:58 |
By :
progamer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
Response.Redirect("index.asp")
ง่าย ๆ ครับ
|
|
|
|
|
Date :
2011-03-29 20:57:06 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอ้ว ทำได้แล้วครับ ขอบคุณสำหรับคำแนะนำ
เลยนำ code มาแบ่งปันด้วย
index.asp
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<%
if Session("Chk") = "Y" then
Session("Chk") = "Y"
Response.Write "YES"
call CheckSession(Session("Chk1"))
Else
Response.Write "NO"
Session("Chk") = "Y"
end if
%>
<%
Function CheckSession(url)
Response.Write "<meta http-equiv='content-type' content='text/html; charset=windows-874'>"
Response.Write "<script language=javascript>" & CRLF
Response.Write "setTimeout('alertWelcome();',5000);" & CRLF
Response.Write "function alertWelcome()" & CRLF
Response.Write "{" & CRLF
Response.Write "window.location='" & url & "'" & CRLF
Response.Write "}" & CRLF
Response.Write "</script>" & CRLF
End Function
%>
</body>
</html>
------------------
list.asp
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<%
IF Session("Chk") = "" Then
Session("Chk") = "Y"
Session("Chk1") = request.ServerVariables("URL")
%>
<script langquage='javascript'>
window.location="index.asp";
</script>
<%
End if
%>
หน้า List
</body>
</html>
|
ประวัติการแก้ไข 2011-03-30 11:28:13 2011-03-30 12:06:14
|
|
|
|
Date :
2011-03-30 10:39:45 |
By :
progamer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|