这是一个简单的示例。
主要就是动态生成mp3的list文件。
<%@ Language=VBScript %>
<%
Response.ContentType="audio/x-mpegurl"
set DBConn = Server.CreateObject("ADODB.Connection")
DBConn.Open(Application("Conn_ConnectionString"))
sql="SELECT ID,Name,FilePath,Visite FROM music order by owner"
Set RS=Server.CreateObject("ADODB.Recordset")
RS.open SQL,DBConn,3,3
i=1
do while not RS.EOF
if RS("ID")=CInt(Request.Form("items")(i)) then
RS(3)=RS(3)+1
Response.write "http://202.38.73.159/music/"+trim(RS(2))+vbCrLf
RS.Update
if i<Request.Form("items").Count then
i=i+1
end if
end if
RS.MoveNext
loop
RS.Close
DBConn.Close
%>