HOME 首页
SERVICE 服务产品
XINMEITI 新媒体代运营
CASE 服务案例
NEWS 热点资讯
ABOUT 关于我们
CONTACT 联系我们
创意岭
让品牌有温度、有情感
专注品牌策划15年

    chat的pt

    发布时间:2023-03-13 06:56:49     稿源: 创意岭    阅读: 72        问大家

    大家好!今天让创意岭的小编来大家介绍下关于chat的pt的问题,以下是小编对此问题的归纳整理,让我们一起来看看吧。

    ChatGPT国内免费在线使用,一键生成原创文章、方案、文案、工作计划、工作报告、论文、代码、作文、做题和对话答疑等等

    只需要输入关键词,就能返回你想要的内容,越精准,写出的就越详细,有微信小程序端、在线网页版、PC客户端

    官网:https://ai.de1919.com

    本文目录:

    chat的pt

    一、系统登陆代码

    asp用ACCESS数据库曾经做个的代码~给你参考一下~

    可用

    不过不知道合不喝你胃口呢~~呵呵:)

    <!--#include file="config.asp"-->

    <!--#include file="conn.asp"-->

    <% '接受本页面的信息

    userid=trim(request.form("userid"))

    password=trim(request.form("password"))

    usersex=trim(request.form("usersex"))

    if usersex<>"帅哥" and usersex<>"靓妹" then

    usersex="神秘人"

    end if

    if request.form("submit")="登陆" then

    if userid="" or password="" then

    response.write "<script language='javascript'>"&chr(13)

    response.write "<!--"&chr(13)

    response.write "alert('请将呢称和密码填写完整!');"&chr(13)

    response.write "window.history.go(-1);"&chr(13) '回滚和ie的后退效果相当

    response.write "//-->"&chr(13)

    response.write "</script>"&chr(13)

    elseif trim(userid)<>userid or trim(password)<>password or instr(userid,"'")>0 or instr(userid,"""")>0 or instr(password,"'")>0 or instr(password,"""")>0 Then

    'instr返回某字符串在另一字符串中第一次出现的位置,如果大于0则表示中间含有要比较的 字符

    response.write "<script language='javascript'>"&chr(13)

    response.write "<!--"&chr(13)

    response.write "alert('用户名和密码中不得包含空格以及引号!');"&chr(13)

    response.write "window.history.go(-1);"&chr(13)

    response.write "//-->"&chr(13)

    response.write "</script>"&chr(13)

    else

    sql="select * from userinfo where userid='"&userid&"'"

    rs.open sql,conn,1,3

    if rs.bof or rs.eof then

    session("loginstatus")="logined"

    session("userid")=userid

    session("grade")=1

    rs.addnew

    rs("userid")=userid

    rs("password")=password

    rs("usersex")=usersex

    rs("regtime")=now()

    rs("logintime")=now()

    rs("userip")=userip

    rs("logincount")=1

    rs("grade")=1

    rs("isonline")=true

    rs.update

    rs.close

    sql="select top 1 * from chatinfo order by puttime asc"

    rs.open sql,conn,1,3

    rs("userid")=""

    rs("sayto")=""

    '第一次使用用户名并没有和数据库的重名,记录各字段内容,并在聊天内容中记录信息

    ' aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

    rs("saycontent")="欢迎新人<span class=usrname onclick=setobj('"&session("userid")&"')>"&session("userid")&"</span>来到本聊天室!"

    ' aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

    '点击时调用函数setobj显示用户名在发言区中

    rs("puttime")=now()

    rs("ispublic")=true

    rs.update

    rs.close

    response.redirect "chat.asp?ntime="&ntime

    elseif rs("password")<>password Then

    '当输入密码不正确的时候显示用户名已经被注册喉结输入的密码不正确

    rs.close

    'session对象赋予空值

    session("loginstatus")=""

    session("userid")=""

    session("grade")=""

    response.write "<script language='javascript'>"&chr(13)

    response.write "<!--"&chr(13)

    response.write "alert('你输入的密码不正确\n\n或该用户名已经被注册,\n\n请重新选择用户名!');"&chr(13)

    response.write "window.history.go(-1);"&chr(13)

    response.write "//-->"&chr(13)

    response.write "</script>"&chr(13)

    Else

    '如果用户名和密码也正确就进入系统,并赋予session对象的初始值

    session("loginstatus")="logined"

    session("userid")=rs("userid")

    session("grade")=rs("grade")

    '记录登陆确定等级,每100次为一个等级

    n_vgrade=(rs("logincount"))\100

    if n_vgrade>rs("grade") and n_vgrade<=maxgrade then

    rs("grade")=n_vgrade

    elseif n_vgrade>rs("grade") and n_vgrade>maxgrade then

    rs("grade")=maxgrade

    end if

    rs("logintime")=now()

    rs("userip")=userip

    '调用config.asp页面中的userip来更新ip,当用户名一样时候记录登陆次数

    rs("logincount")=rs("logincount")+1

    application("count")=rs("logincount")

    '定义一个application变量来存放一共登陆的次数

    application("IP")=rs("userip")

    rs("isonline")=true

    rs.update

    rs.close

    '执行数据库的更新并关闭rs的userinfo

    sql="select * from chatinfo order by puttime asc"

    rs.open sql,conn,1,3

    rs("userid")=""

    rs("sayto")=""

    ' aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

    rs("saycontent")="欢迎<span class=usrname onclick=setobj('"&session("userid")&"')>"&session("userid")&"</span>来到聊天室!你的登陆次数为:" & application("count") & " 登陆的IP为:" &application("IP")

    '在聊天的内容里当点击的时候调用setobj

    ' aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

    rs("puttime")=now()

    rs("ispublic")=true

    rs.update

    rs.close

    '执行数据库的更新并关闭rs的chatinfo

    response.redirect "chat.asp?ntime="&ntime

    '利用response实现转向

    end if

    end if

    set rs=nothing

    conn.close

    set conn=Nothing

    '关闭数据库的连接

    else

    %>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

    <title><%=pagetitle%></title>

    <!-- 用字幕插入状态栏的滚动欢迎字幕 -->

    <script language="javascript">

    <!--

    var qirong="■◇★欢迎您的光临□◆☆ "; //状态栏中的显示

    var position =0; //赋值position为0

    function ScrollMessage() //函数ScrollMessage()

    { window.status =qirong.substring(position, qirong.length)+qirong.substring(0,position); //设定区域长度为变量qirong的长度,并让此字符串首尾连接

    position++; //累加位置

    if (position > qirong.length) position=0; //当累加位置的长度超过字符串的长度,将变量position从0算起

    window.setTimeout("ScrollMessage()", 500); } //设置浏览的速度值越小,速度越快

    ScrollMessage(); //运行函数

    -->

    </script>

    </head>

    <!-- 首页面界面 -->

    <body topmargin="0" leftmargin="0" style="color: #CC3300" background="images/harry21.jpg">

    <!-- 表格提交方式采用post提交 -->

    <!-- aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -->

    <form method="POST" action="<%=request.servervariables("script_name")%>">

    <!--执行脚本的虚拟路径,用于自引用的URL -->

    <!-- aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -->

    <!-- HTML的主体部分 -->

    <body topmargin="0" leftmargin="0">

    <table width="100%" height="130" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC" style="width:200px; font-size:12px" valign="center">

    <td>

    </td>

    </tr>

    </table>

    <table align="center" cellpadding=0 cellspacing=0 >

    <tr><td width="340" height="22" background="images/new_bg.jpg" align="right">

    <!-- 用HTML的JavaScript制作【添加收藏】-->

    <script language="JavaScript">

    function bookmarkit(){window.external.addFavorite('http://www.baidu.com','【聊天室】')}

    if (document.all)document.write('<a href="#" onClick="bookmarkit()"><font fase="黑体" size="2"color="white">【添加收藏】</font></a>')</script>

    </td></tr>

    </table>

    <table width="340" height="130" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC" style="width:340px; font-size:12px" valign="center" background="images/index_39.gif">

    <tr>

    <td colspan="2" height="30" align="center" width="340"><font color="blue" size="3">

    <marquee direction="left" behavior="alternate" scrollamount="2" scrolldelay="100"> 欢迎光临←|<font color="red" size="3"><img src=images/ico01.gif>|→小小天地</font></marquee>

    </font></td>

    </tr>

    <tr>

    <td width="340" height="35" align="center">

    <font color="#004779">用户名</font></td>

    <td width="63%">

    <input type="text" name="userid" size=19 maxlength="10" style="width: 100; height: 18; border: 1px solid #004779"></td>

    </tr>

    <tr>

    <td height="35" align="center"><font color="#004779">密  码</font></td>

    <td>

    <input type="password" name="password" size="19" maxlength="30" style="width: 100; height: 18; border: 1px solid #004779"></td>

    </tr>

    <tr>

    <td height="35" align="center" ><font color="#004779">性  别</font></td>

    <td width="340"><select name="usersex" style="width:100px;">

    <option value="帅哥">帅哥

    <option value="靓妹">靓妹

    <option value="神秘人" selected>保密</select> </td>

    </tr>

    <tr>

    <td height="26" colspan="2" width="340">

    <p align="center">

    <!-- 登陆submit按钮 -->

    <input type="submit" value="登陆" name="submit" style="border:1px solid #004779; width:55;height:18; color:#ffffff; font-size:9pt; background-color:#6CCCF4" onmouseover="style.backgroundColor='#35ACF2'"

    onmouseout="style.backgroundColor='#6CCCF4'"> 

    <!-- 重置reset按钮-->

    <input type="reset" value="重置" name="reset" style="border:1px solid #004779; width:55;height:18; color:#ffffff; font-size:9pt; background-color:#6CCCF4" onmouseover="style.backgroundColor='#35ACF2'" onmouseout="style.backgroundColor='#6CCCF4'"> 

    <!-- 帮助按钮-->

    <input type="button" value="帮助" name="reset" style="border:1px solid #004779; width:55;height:18; color:#ffffff; font-size:9pt; background-color:#6CCCF4" onmouseover="style.backgroundColor='#35ACF2'" onmouseout="style.backgroundColor='#6CCCF4'" onclick="javascript:window.open('help.asp','user_help','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=400,height=170')"> 

    <!-- 用样式表控制鼠标放到按钮的颜色 -->

    </p>

    </td>

    </tr>

    </table>

    <table align="center" cellpadding=0 cellspacing=0 >

    <tr>

    <td width="340" height="13" background="images/new_bg.jpg" align="right">

    </form>

    <img src="images/mov.gif">

    <font fase="黑体" size="2"color="white">今天:

    <!-- 插入jaca script 显示日期 -->

    <script language="JavaScript">

    <!--

    var Day = new

    Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日"); //创建day新值,array()是新值的取值

    var today = new Date () ; //获得当前日期

    var Month =today.getMonth()+1; //获得当前月

    var Date=today.getDate(); //获得当前日

    var Year=today.getYear(); //获得当前年

    aaa=+Year+"年"+Month+"月"+Date+"日 "+Day[today.getDay()];

    document.write(aaa);

    -->

    </script>

    </font>

    </td>

    </tr>

    </table>

    <br>

    <br>

    <br>

    <br>

    <br>

    <hr width="70%">

    <center><font size=2>邮箱地址:<a href="mailto:qirongsong@163.com">qirongsong@163.com</a>

    QQ:71181678</font></center>

    </body>

    </html>

    <%

    end if

    %>

    二、现在谁有 黑暗之中吻了你的嘴这首歌啊。

    黑暗之中吻了你的嘴 — 家家唱

    应该是这首 把?听着还可以,刚在一威信 每晚睡前音乐 那搜的,要不是这首,你也可以到这了找找看咯,部分歌词:

    do you mind give me a kiss, my dear

    这是我酒醉的第182个夜场

    我想我能承受那糜烂的灯光

    那些男人只会盯着我的大腿

    在他们眼中女人只会臭美

    I FUKE 都他妈的去死吧

    现在的白马王子其实都是孙子

    白马也是禽兽王子只是借口

    上床了肯定不会只是牵你的手

    我在慢慢的靠近那个女人

    她诱人的身姿已经深深将我吸引

    哦 上帝 我的女神

    让我拥有你的全身你的灵魂

    在黑暗中我将你的头抬起

    你深红的嘴唇让我不能自己

    我发誓我已经不能再压抑

    三、高分悬赏:QQ号码被临时冻结,密保答案忘了,怎么办?急!急!急!详细解答追加50分

    QQ号被腾讯冻结怎么办?教你怎么解除腾讯冻结? 不用网页解冻直接解除方法!

    昨天晚上登QQ时腾讯说我QQ号被限制登录,我就去了那个激活中心去激活,结果在激活密码保护验证时,我正好忘记了密码保护,很郁闷.

    晚上跟朋友出去吃饭,跟他说了这件事,然后他就把他手机拿了出来(开通了GPRS),然后他把那个WAPQQ打开,让我登陆,我想这肯定不行啦,他偏要让我登,我就登,结果,居然成功了,晚上回家打开电脑一登,果然可以,已经解除了限制,很高兴

    根据以上事例,我们总结了一下方法:

    首先要可以登陆WAPQQ(手机腾讯网,手机QQ都可以解除)

    有些朋友手机没有开通GPRS,但是网络上上不是有在PC上登陆WAPQQ的软件,根据参照网址的方法弄好后,就登陆WAPQQ的网址,然后输入QQ号登陆。

    注:有时候登录时登陆上去会发现没有好友,这就表明没有激活,这个时候再去手机腾讯网或者手机QQ登陆,这三个手机登陆地址来回登陆,等到看到有好友时,就说明已经激活了

    最后把3个地址说下:(只适用于在电脑上用的)

    WAPQQ:http://waprelay.sjkx.com/r/order_0000078?station=guni&PT=101:100009&from=QQChat&pid=QQChat&

    手机腾讯网:http://q14.3g.qq.com/g/s?sid=hl+NmA3cQdDZVR4hYkFgxg==&aid=nLogin

    手机QQ:http://wapmail.yi.org/qq/

    附注:这个方法以及这3个登陆地址只能用参照上的软件并且成功设置才可以使用!

    四、谁能告诉我后街男孩一共发了几张专辑?分别是什么名字?里面有哪些歌曲(歌曲的名字)?

    后街男孩 所有专辑 单曲 EP DVD 等大集合! 绝对符合你的要求!

    Main Albums

    1996 Backstreet Boys Jive

    AMG Track Picks

    Quit Playing Games (With My Heart), Everybody (Backstreet's Back)

    1997 Backstreet's Back Jive

    AMG Track Picks

    Everybody (Backstreet's Back), As Long as You Love Me

    1999 Millennium Jive

    AMG Track Picks

    Larger Than Life, I Want It That Way, Show Me the Meaning of Being Lonely

    1999 Christmas Album Jive

    2000 Single & Available Import

    2000 Black & Blue Jive

    AMG Track Picks

    Call, Shape of My Heart

    2005 Never Gone Jive

    AMG Track Picks

    Incomplete, Just Want You to Know, Weird World, Lose It All

    indicates Album Pick

    -----------------------------------------------

    Compilations

    1999 Box Set Transcontinental

    2000 In the Spotlight with the Backstreet Boys Matrix Music Mrktng

    2001 The Hits: Chapter One [Canada Bonus Tracks] Jive International

    2001 The Hits: Chapter One Jive

    AMG Track Picks

    I Want It That Way, Everybody (Backstreet's Back), As Long as You Love Me, Quit Playing Games (With My Heart)

    2001 The Hits: Chapter One [Australia Bonus Tracks] Jive International

    AMG Track Picks

    I Want It That Way, Everybody (Backstreet's Back), As Long as You Love Me, Quit Playing Games (With My Heart)

    2001 The Hits: Chapter One [Bonus CD] Jive International

    AMG Track Picks

    I Want It That Way, Everybody (Backstreet's Back), Show Me the Meaning of Being Lonely

    2002 Greatest Hits Jive

    2003 Millennium/Black & Blue BMG

    2006 Hits: Chapter 1 [Japan Bonus DVD] Avex Trax Japan

    indicates Album Pick

    -------------------------------------------

    Singles&EPs

    1995 We've Got It Goin On [CD] Jive

    1995 We've Got It Goin On [12] Jive

    1997 Quit Playing Games (With My Heart) [US CD #2] Jive

    1997 Quit Playing Games (With My Heart) [US 12] Jive

    1997 Everybody [UK #2] Alex

    1997 As Long as You Love Me [US] Jive

    1997 Backstreet's Back [14 Track] Jive

    AMG Track Picks

    Everybody (Backstreet's Back), As Long as You Love Me, All I Have to Give

    1997 Quit Playing Games (With My Heart) [US CD #1] Jive

    1998 Everybody [US #1] Jive

    1998 Everybody [US #2] Jive

    1998 All I Have to Give, Pt. 1 [UK CD Single] BMG International

    1998 All I Have to Give, Pt. 2 [UK CD Single] BMG International

    1998 Anywhere for You, Pt. 1 [UK CD Single] BMG International

    1998 Anywhere for You, Pt. 2 [UK CD Single] BMG International

    1998 As Long as You Love Me [UK #1] Jive

    1998 Everybody [UK #1] BMG International

    1998 Everybody [UK #3] BMG International

    1998 Quit Playing Games (With My Heart) [UK] BMG International

    1998 Singles Box Import

    1998 I'll Never Break Your Heart, Pt. 1 [Imprint] Import

    1998 I'll Never Break Your Heart, Pt. 1 [Mushroom] Mushroom

    1998 I'll Never Break Your Heart, Pt. 2 [Mushroom] Mushroom

    1998 Singles Box, Vol. 2 BMG International

    1999 All I Have to Give [US CD Single] Jive

    AMG Track Picks

    All I Have to Give

    1999 All I Have to Give [US CD5/Cassette Single] Jive

    1999 I Want It That Way Jive

    AMG Track Picks

    I Want It That Way

    1999 All I Have to Give [Japan CD Single #1] Avex Group

    1999 As Long as You Love Me [UK #2] BMG International

    1999 Get Down (You're the One) [Import CD Single] BMG International

    1999 Millennium Singles Collection Import

    1999 We've Got It Goin On [Import] BMG International

    1999 Larger Than Life [Japan Single] Avex Japan

    1999 Everybody [Maxi Single] BMG International

    AMG Track Picks

    Everybody (Backstreet's Back), Everybody (Backstreet's Back)

    1999 I'll Never Break Your Heart [Holland CD Single & Interview] BMG International

    AMG Track Picks

    I'll Never Break Your Heart

    1999 Larger Than Life [Australia CD Single] BMG International

    1999 Larger Than Life [German CD Single] BMG International

    AMG Track Picks

    Larger Than Life

    1999 All I Have to Give [Holland CD Single] BMG International

    AMG Track Picks

    All I Have to Give

    1999 Anywhere for You [Holland CD Single] BMG International

    1999 As Long as You Love Me [Holland] BMG International

    1999 Get Down (You're the One) [Spain CD Single] BMG International

    1999 Quit Playing Games (With My Heart) [Holland CD Single] BMG International

    AMG Track Picks

    Quit Playing Games (With My Heart)

    1999 Larger Than Life [UK CD Single] BMG International

    2000 Show Me the Meaning of Being Lonely BMG International

    2000 One [Holland CD Single] Jive International

    2000 One [Holland Limited Edition CD Single]

    2000 The One [CD Single] Jive

    2000 Shape of My Heart [12] Jive

    2000 Shape of My Heart [CD 1] Jive International

    AMG Track Picks

    Shape of My Heart

    2000 Shape of My Heart [CD 2] Jive

    2001 All I Have to Give [Japan CD Single #2] Avex

    2001 Call Zomba

    AMG Track Picks

    Call, Shape of My Heart

    2001 Call: Remixes Jive International

    2001 More Than That [Holland CD] Zomba

    2001 More Than That [Import CD] Jive International

    2001 More Than That, Pt. 1 Zomba

    2001 Drowning [Australia CD] Jive International

    2001 Drowning [Import CD] Jive International

    2002 Drowning [Import Mixes] Jive International

    2005 Incomplete [UK CD 2] Jive

    2005 Incomplete [Germany CD #1] BMG International

    2005 Just Want You to Know [Single] Jive/Zomba Recording

    2005 Incomplete [Germany CD #2] BMG Germany

    2005 Incomplete [UK CD 1] Sony / BMG Import

    2005 Just Want You to Know [CD #1] Jive

    2005 Just Want You to Know [CD #2] Jive

    2005 I Still, Pt. 2 BMG Germany

    2005 Canzoni Al Massimo Jive

    2006 I Still BMG Japan

    -------------------------------------------

    DVDs&Videos

    1998 Live in Concert Jive

    1998 Video Zomba

    1998 All Access [Video/DVD] Jive

    1998 Behind the Scenes Music Video Distributors

    1998 Night out with the Backstreet Boys [DVD] Jive

    1999 Homecoming: Live in Orlando [Video/DVD] Jive

    1999 Backstreet Stories Eaton Entertainment

    2000 Standing Room Only [live] Jive

    2001 Black & Blue Around the World [live] Jive

    2001 The Hits: Chapter One [DVD] Jive

    2005 Never Gone: The Videos Jive

    ---------------------------------------------

    Other

    1998 Star Profiles I Mastertone

    1998 AJ Shaped Interview I Import

    1998 Brian Shaped Interview I Gema

    1998 Kevin Shaped Interview I Trans Continental

    1998 Pop View Interview I Import

    1999 The Interview Sessions I Chatback

    1999 Howie D Shaped Interview I Varta/Jive

    1999 Nick Shaped Interview I Import

    1999 Maximum Backstreet Boys I Chrome Dreams

    1999 Private Talks I Import

    1999 Chatback Interviews I Import

    1999 Interview I Megaworld

    2000 Interview [Germany Import] I Private Talks

    2000 Interview [US] I Orchard

    2000 More Maximum Backstreet Boys I Chrome Dreams

    2000 Audio Biography: The Complete Box Set X Chrome Dreams

    2001 The Unauthorized Biography and Interview I Import

    2002 Backstreet Boys Xposed I Chrome Dreams

    2002 Complete Set: Interview and CD Book I Griffin Music

    Interview CD I Chatdig

    ===========================================================

    后街男孩 所有歌曲!

    10,000 Promises Max Martin Backstreet's Back

    A.J. Interview Geführt Von Mola Adebisi Box Set

    All I Have to Give, Pt. 2 Full Force Backstreet's Back [14 Track]

    All I Have to Give Full Force Backstreet Boys

    Anywhere for You Gary Baker ... Backstreet Boys

    Composed by: Gary Baker, Wayne Perry

    As Long as You Love Me (Every Time I Close My Eyes) Max Martin Millennium Singles Collection

    As Long as You Love Me Max Martin Backstreet Boys

    B-Rok Interview Geführt Von Mola Adebisi Box Set

    Back to Your Heart Gary Baker ... Millennium

    Composed by: Gary Baker, Jason Blume, Kevin Richardson

    Backstreet Boyz Interview Backstreet's Back [UK CD Single Bonus Disc]

    Composed by: Gary Baker, Jason Blume, Kevin Richardson

    Behind-The-Scenes of the Incomplete Video Never Gone [DualDisc]

    Composed by: Gary Baker, Jason Blume, Kevin Richardson

    Bonus Features Never Gone [DualDisc]

    Composed by: Gary Baker, Jason Blume, Kevin Richardson

    Boys Will Be Boys Veit Renn ... Backstreet Boys [Canada]

    Composed by: Veit Renn, Jolyon Skinner

    Christmas Time Veit Renn ... Millennium Singles Collection

    Composed by: Veit Renn, J. Smith, J. Wright

    Climbing the Walls Lukasz "Doctor Luke" Gottwald ... Never Gone

    Composed by: Lukasz "Doctor Luke" Gottwald, Max Martin

    Crawling Back to You Blair Daly ... Never Gone

    Composed by: Blair Daly, Chris Farren

    Darlin' Timmy Allen ... Backstreet Boys

    Composed by: Timmy Allen, Nneka Morton

    Don't Leave Me H Casey, S Combs ... Backstreet Boys [Holland Bonus Tracks]

    Composed by: H Casey, S Combs, R Finch, O Harvey, C Mack, Mookie, A Toney

    Don't Wanna Lose You Now Max Martin Millennium

    Don't Want You Back Max Martin Millennium

    Drowning Andreas Carlsson ... Drowning [Australia CD]

    Composed by: Andreas Carlsson, Rami, Linda Thompson-Jenner

    Every Time I Close My Eyes Eric Fost ... As Long as You Love Me [US]

    Composed by: Eric Foster White

    Everybody (Backstreet's Back) 7 Version Max Martin ... Everybody [UK #1]

    Composed by: Max Martin, Denniz Pop

    Everybody (Backstreet's Back) Extended Version Max Martin ... Everybody [UK #1]

    Composed by: Max Martin, Denniz Pop

    Everybody (Backstreet's Back) Max & Macario Club Mix Max Martin ... Millennium Singles Collection

    Composed by: Max Martin, Denniz Pop

    Everybody (Backstreet's Back) MultiMan Remix Max Martin ... Everybody [UK #1]

    Composed by: Max Martin, Denniz Pop

    Everybody (Backstreet's Back) Max Martin ... Backstreet Boys

    Composed by: Max Martin, Denniz Pop

    Everybody [Backstreet's Back] Max & Macario Club Mix Max Martin ... Everybody [UK #1]

    Composed by: Max Martin, Denniz Pop

    Everyone Andreas Carlsson ... Black & Blue

    Composed by: Andreas Carlsson, Kristian Lundin

    Get Another Boyfriend Max Martin, Rami Black & Blue

    Get Down (You're the One for Me) Bülent Aris ... Backstreet Boys

    Composed by: Bülent Aris, Toni Cottura

    Give Me Your Heart Larry Campbell Quit Playing Games (With My Heart) [UK]

    Happy Valentine Millennium Singles Collection

    Hey, Mr. DJ (Keep Playin' This Song) Timmy Allen ... Backstreet Boys

    Composed by: Timmy Allen, Larry Campbell, Jolyon Skinner

    How Did I Fall in Love With You Howie Dorough ... Black & Blue

    Composed by: Howie Dorough, Andrew Fromm, Calum MacColl

    Howie D. -Interview Gefuhrt Von Mola Adebisi Box Set

    Composed by: Howie Dorough, Andrew Fromm, Calum MacColl

    I Need You Tongiht Andrew Fromm Millennium [International Edition]

    I Need You Tonight Andrew Fromm Millennium

    I Never Break Your Heart Albert Manno ... The Hits: Chapter One [Canada Bonus Tracks]

    Composed by: Albert Manno, Eugene Wilde

    I Promise You (With Everything I Am) Dan Hill Black & Blue

    I Still... Max Martin, Rami Never Gone

    I Wanna Be With You Max Martin ... Backstreet Boys [Canada]

    Composed by: Max Martin, Denniz Pop

    I Want It That Way Andreas Carlsson ... Millennium

    Composed by: Andreas Carlsson, Max Martin

    I'll Be There for You Timmy Allen ... I Want It That Way

    Composed by: Timmy Allen, Gary Baker, Wayne Perry

    I'll Never Break Your Heart Albert Manno ... Backstreet Boys

    Composed by: Albert Manno, Eugene Wilde

    I'll Never Break Your Hearts Albert Manno ... The Hits: Chapter One [Bonus CD]

    Composed by: Albert Manno, Eugene Wilde

    I'll Never Find Someone Like You Marti Sharron ... Millennium Singles Collection

    Composed by: Marti Sharron, Danny Shembello

    If I Don't Have You Timmy Allen ... Backstreet's Back

    Composed by: Timmy Allen, Gary Baker, Wayne Perry

    If You Knew What I Knew Bryan Bennett ... Larger Than Life [Japan Single]

    Composed by: Bryan Bennett, Billy Chapin, A.J. McLean

    If You Knew What I Know Bryan Bennett ... Millennium [Japan Bonus CD #1]

    Composed by: Bryan Bennett, Billy Chapin, A.J. McLean

    If You Want It to Be Good Girl (Get Yourself a Bad Boy) Robert Jo ... Backstreet Boys

    Composed by: Robert John "Mutt" Lange

    In the Spotlight With the Backstreet Boys In the Spotlight with the Backstreet Boys

    Composed by: Robert John "Mutt" Lange

    Incomplete Jess Cates ... Never Gone

    Composed by: Jess Cates, Dan Muckala, Lindy Robbins

    It's Gotta Be You Robert John "Mutt" Lange ... Millennium

    Composed by: Robert John "Mutt" Lange, Max Martin

    It's True Andreas Carlsson ... Black & Blue

    Composed by: Andreas Carlsson, Max Martin, Kevin Richardson

    Just to Be Close to You Tim Grant ... Backstreet Boys [Canada]

    Composed by: Tim Grant, Michael Gray

    Just Want You to Know Likasz Gottwald ... Never Gone

    Composed by: Likasz Gottwald, Max Martin

    Kevin Interview Geführt Von Mola Adebisi Box Set

    Composed by: Likasz Gottwald, Max Martin

    Larger Than Life Brian Littrell ... Millennium

    Composed by: Brian Littrell, Kristian Lundin, Max Martin

    Lay Down Beside Me Veit Renn ... Quit Playing Games (With My Heart) [US CD #1]

    Composed by: Veit Renn, Jolyon Skinner

    Let's Have a Party Kenyatta Galbreth ... Box Set

    Composed by: Kenyatta Galbreth, Kenny Gamble, Leon Huff, Dave McPherson, Mookie, Jeff Sledge, C.J. Trevett

    Like a Child Fitzgeral ... Backstreet's Back

    Composed by: Fitzgerald Scott

    Lose It All Alexander Barry ... Never Gone

    Composed by: Alexander Barry, Wally Gagel, Shelly Peiken

    Mark Goodier Interview, Pt. 2 Millennium Singles Collection

    Composed by: Alexander Barry, Wally Gagel, Shelly Peiken

    Missing You Tetsuya Komuro ... Backstreet's Back [14 Track]

    Composed by: Tetsuya Komuro, Jolyon Skinner

    More Than That Adam Anders ... Black & Blue

    Composed by: Adam Anders, Franciz, LePont

    My Beautiful Woman Paul Wiltshire ... Never Gone

    Composed by: Paul Wiltshire, Victoria Wu

    My Heart Stays With You Full Force I Want It That Way

    Never Gone Gary Baker ... Never Gone

    Composed by: Gary Baker, Steve Diamond, Kevin Richardson

    Nick Interview Geführt Von Mola Adebisi Box Set

    Composed by: Gary Baker, Steve Diamond, Kevin Richardson

    No One Else Comes Close Gary Baker ... Millennium

    Composed by: Gary Baker, Wayne Perry, Joe

    Nobody But You Herbert Crichlow ... Quit Playing Games (With My Heart) [UK]

    Composed by: Herbert Crichlow, Max Martin, Denniz Pop

    Non Puoi Lasciarmi Cosi Backstreet Boys [Italy Limited Edition]

    Composed by: Herbert Crichlow, Max Martin, Denniz Pop

    Not for Me Andreas Carlsson ... Black & Blue

    Composed by: Andreas Carlsson, Jake, Kristian Lundin

    Poster Girl billymann ... Never Gone

    Composed by: billymann, Rasmus Bähncke, René Tromborg

    Quit Playin' Games (With My Heart) Backstreet Boys [Italy Limited Edition]

    Composed by: billymann, Rasmus Bähncke, René Tromborg

    Quit Playing Games (With My Heart) Herbert Crichlow ... Backstreet Boys

    Composed by: Herbert Crichlow, Max Martin

    Roll With It Veit Renn ... Backstreet Boys [Canada]

    Composed by: Veit Renn, Jolyon Skinner

    Safest Place to Hide Tom Leonard ... Never Gone

    Composed by: Tom Leonard, Robin Lerner

    Secret Diary VCD Black & Blue [Import Bonus CD]

    Composed by: Tom Leonard, Robin Lerner

    Set Adrift on Memory Bliss Attrell Cordes ... Backstreet Boys

    Composed by: Attrell Cordes, Gary Kemp

    Shap of My Heart Max Martin ... The Hits: Chapter One [Bonus CD]

    Composed by: Max Martin, Lisa Miskovsky, Rami

    Shape of My Heart Max Martin ... Shape of My Heart [CD 1]

    Composed by: Max Martin, Lisa Miskovsky, Rami

    Shining Star Nick Carter ... Black & Blue

    Composed by: Nick Carter, Howie Dorough, Franciz, Lepont

    Show Me the Meaning of Being Lonely Herbert Crichlow ... Millennium

    Composed by: Herbert Crichlow, Max Martin

    Siberia Alexander ... Never Gone

    Composed by: Alexander, Max Martin, Rami

    Spanish Eyes Andrew Fromm ... Millennium

    Composed by: Andrew Fromm, Sandy Linzer

    Tell Me That I'm Dreaming Max Martin ... Millennium Singles Collection

    Composed by: Max Martin, Denniz Pop

    That's the Way I Like It Herbert Crichlow ... Backstreet's Back

    Composed by: Herbert Crichlow, Max Martin, Denniz Pop

    That's What She Said Brian Littrell Backstreet's Back

    The Answer to Our Life Nick Carter ... Black & Blue

    Composed by: Nick Carter, Howie Dorough, Brian Littrell, A.J. McLean, Kevin Richardson

    The Call Max Martin, Rami Black & Blue

    The One Brian Littrell ... Millennium

    Composed by: Brian Littrell, Max Martin

    The Perfect Fan Brian Littrell ... Millennium

    Composed by: Brian Littrell, Thomas L. Smith

    The Way I Like It Herbert Crichlow ... Backstreet's Back [14 Track]

    Composed by: Herbert Crichlow, Max Martin, Denniz Pop

    Time Mick Carter ... Black & Blue

    Composed by: Mick Carter, Howie Dorough, Brian Littrell, A.J. McLean, Kevin Richardson

    Untitled Backstreet's Back [UK CD Single Bonus Disc]

    Composed by: Mick Carter, Howie Dorough, Brian Littrell, A.J. McLean, Kevin Richardson

    We've Got It Goin' On Herbert Crichlow ... Backstreet Boys

    Composed by: Herbert Crichlow, Max Martin, Denniz Pop

    Weird World John Ondrasik Never Gone

    What Makes You Different (Makes You Beautiful) Andreas Carlsson ... Black & Blue [Japan Bonus Tracks]

    Yes I Will Brian Kierulf ... Black & Blue

    Composed by: Brian Kierulf, A.J. McLean, Josh Schwartz

    You Wrote the Book on Love Gary Baker ... Millennium [Australia Limited Edition Bonus Tracks]

    Composed by: Gary Baker, Butch Johnson, Wayne Perry

    [Untitled Track] Backstreet's Back [14 Track]

    这个够全了吧........

    这个整理和贴的也不容易啊 都是我自己辛苦找来的啊!楼主给我加分吧 嘿嘿

    以上就是关于chat的pt相关问题的回答。希望能帮到你,如有更多相关问题,您也可以联系我们的客服进行咨询,客服也会为您讲解更多精彩的知识和内容。


    推荐阅读:

    ChatGPT中文在线官网(ChatGPT中文在线官网 免费注册与镜像)

    如何装chatGPT(如何装插头)

    ChatGPT微信小程序靠谱吗

    思美传媒四川旅投

    ChatGPT论文第一(t1论文)