ในกรณีของ (asp นะครับ) Mobile Agent จะทำให้ redirect ไป full size อย่างไรครับ
สวัสดีครับ
ผมได้ทำ mobile website ไว้ในอีก directory นึงครับแยกจาก site.com เดิมของผม โดยใส่ code asp ดังกล่าวนี้ไว้ที่ header ของ site.com
Code (ASP)
<%
Option Explicit
Dim user_agent, mobile_browser, Regex, match, mobile_agents, mobile_ua, i, size
user_agent = Request.ServerVariables("HTTP_USER_AGENT")
mobile_browser = 0
Set Regex = New RegExp
With Regex
.Pattern = "(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|windows ce|pda|mobile|mini|palm)"
.IgnoreCase = True
.Global = True
End With
match = Regex.Test(user_agent)
If match Then mobile_browser = mobile_browser+1
If InStr(Request.ServerVariables("HTTP_ACCEPT"), "application/vnd.wap.xhtml+xml") Or Not IsEmpty(Request.ServerVariables("HTTP_X_PROFILE")) Or Not IsEmpty(Request.ServerVariables("HTTP_PROFILE")) Then
mobile_browser = mobile_browser+1
end If
mobile_agents = Array("w3c ", "acs-", "alav", "alca", "amoi", "audi", "avan", "benq", "bird", "blac", "blaz", "brew", "cell", "cldc", "cmd-", "dang", "doco", "eric", "hipt", "inno", "ipaq", "java", "jigs", "kddi", "keji", "leno", "lg-c", "lg-d", "lg-g", "lge-", "maui", "maxo", "midp", "mits", "mmef", "mobi", "mot-", "moto", "mwbp", "nec-", "newt", "noki", "oper", "palm", "pana", "pant", "phil", "play", "port", "prox", "qwap", "sage", "sams", "sany", "sch-", "sec-", "send", "seri", "sgh-", "shar", "sie-", "siem", "smal", "smar", "sony", "sph-", "symb", "t-mo", "teli", "tim-", "tosh", "tsm-", "upg1", "upsi", "vk-v", "voda", "wap-", "wapa", "wapi", "wapp", "wapr", "webc", "winw", "winw", "xda", "xda-")
size = Ubound(mobile_agents)
mobile_ua = LCase(Left(user_agent, 4))
For i=0 To size
If mobile_agents(i) = mobile_ua Then
mobile_browser = mobile_browser+1
Exit For
End If
Next
If mobile_browser>0 Then
Response.Redirect("http://m.site.com/index.asp")
Else
Response.Redirect("http://www.site.com")
End If
%>
ซึ่งพอเรียกurl site.com บนมือถือก็ย้ายไป m.site.com เรียบร้อยครับ
ทีนี้ มีปัญหาอยู่ว่าจะให้กดลิงค์แล้วจะให้ดูเวอร์ชั่นเว็บไซต์เต็ม (site.com) ได้ด้วยนั้นทำยังไงครับ มีคำสั่งไหนบ้างที่เกี่ยวข้องรบกวนแนะนำด้วยครับ
แปลงคำถามมาจาก https://www.thaicreate.com/php/forum/088047.html#4 Tag : ASP, iOS, Android, iPhone, Tablets, Mobile
Date :
2013-01-21 15:21:40
By :
sangdow29
View :
1385
Reply :
5
ขอบคุณมากครับ
Date :
2013-01-21 16:02:38
By :
sangdow29
ถ้าแบบยากหน่อยจะเป็นแบบไหนเหรอครับ อยากขอคำแนะนำหน่อย เอาไว้ศึกษาครับ
Date :
2013-01-22 08:30:38
By :
sangdow29
แบบนี้ง่ายสุดแล้วครับ ถ้าแบบยาก อาจจะต้องใช้พวก Session / Cookies เข้ามาช่วยครับ
Date :
2013-01-22 10:42:20
By :
mr.win
ขอบคุณอีกครั้งครับ แต่พอจะมีคำสั่งเป็นตัวอย่างไหมครับ
ประวัติการแก้ไข 2013-01-22 11:46:23
Date :
2013-01-22 11:39:07
By :
sangdow29
Load balance : Server 03