Avatar billede freud Nybegynder
11. januar 2008 - 01:29 Der er 1 kommentar og
1 løsning

asp / db til xml

Har denne xml fil som danner baggrund for visning af en flash fil

<?xml version="1.0" encoding="iso-8859-1"?>

<ads>
    <ad image="images/aug07.jpg" link="http://localhost/projekter/www/index.asp?Menu=49&Template=indhold" target="_parent"/>
    <ad image="images/rating_system_590x175.jpg" link="http://localhost/projekter/www/index.asp?Menu=49&Template=indhold" target="_parent"/>
    <ad image="images/photo_gallery_590x175.jpg" link="/products/flash_photo_gallery/"/>
    <ad image="images/micro_menu_590x175.jpg" link="/products/micro_menu/"/>
    <ad image="images/targa_menu_590x175.jpg"/>
</ads>

<options>
    <option display_seconds="4" autoplay="true" fade_seconds="1" show_pause_button="true"/>
    <option buttons_alpha="40" buttons_rollover_alpha="80" buttons_space="-1" buttons_margin="5"/>
    <option show_time_bar="true" time_bar_alpha="100" time_bar_color="CCFF00"/>
</options>

Nu vil jeg gerne " gøre denne del dynamisk " - altså kunne udfylde
disse felter på baggrund af indhold fra en db

<ads>
    <ad image="images/aug07.jpg" link="http://localhost/projekter/www/index.asp?Menu=49&Template=indhold" target="_parent"/>
    <ad image="images/rating_system_590x175.jpg" link="http://localhost/projekter/www/index.asp?Menu=49&Template=indhold" target="_parent"/>
    <ad image="images/photo_gallery_590x175.jpg" link="/products/flash_photo_gallery/"/>
    <ad image="images/micro_menu_590x175.jpg" link="/products/micro_menu/"/>
    <ad image="images/targa_menu_590x175.jpg"/>
</ads>
Avatar billede w13 Novice
11. januar 2008 - 10:46 #1
Så retter du til:
<%response.contenttype="application/xml"%><?xml version="1.0" encoding="iso-8859-1"?>

<ads>
    <ad image="images/aug07.jpg" link="http://localhost/projekter/www/index.asp?Menu=49&Template=indhold" target="_parent"/>
    <ad image="images/rating_system_590x175.jpg" link="http://localhost/projekter/www/index.asp?Menu=49&Template=indhold" target="_parent"/>
    <ad image="images/photo_gallery_590x175.jpg" link="/products/flash_photo_gallery/"/>
    <ad image="images/micro_menu_590x175.jpg" link="/products/micro_menu/"/>
    <ad image="images/targa_menu_590x175.jpg"/>
</ads>

<options>
    <option display_seconds="4" autoplay="true" fade_seconds="1" show_pause_button="true"/>
    <option buttons_alpha="40" buttons_rollover_alpha="80" buttons_space="-1" buttons_margin="5"/>
    <option show_time_bar="true" time_bar_alpha="100" time_bar_color="CCFF00"/>
</options>
-----------------------------------------------------
Og så skal filen gemmes som [filnavn].asp i stedet for [filnavn].xml - det vil gøre, at den først vil blive udført som ASP (så der kan hentes fra db), men response.contenttype sætter derefter filtypen til xml, så den kan læses som en sådan. Og så kan du bruge al det ASP i filen, du vil! =)
Avatar billede freud Nybegynder
28. marts 2008 - 03:03 #2
Lange om længe fandt jeg en løsning .... hjulpet godt på vej af din ide :-)
==============================================================================

<%
Set Conn = Server.CreateObject("ADODB.Connection")
DSN = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("test.mdb")
Conn.Open DSN

strSQL = "SELECT * FROM Menu ORDER BY MenuOrden ASC"
set rs = Conn.Execute(strSQL)

Do While Not rs.EOF
    dinduno = dinduno & "<ad image=""images/" & rs("MenuTitel") & """ link=""images/" & rs("MenuTitel") & """ target=""_blank""/>"
rs.MoveNext
Loop

Conn.Close
Set Conn = Nothing
%>

<%
name = "ad_loader.xml"

Set oFSO = Server.CreateObject("Scripting.FileSystemObject")
fileName = name
Set iFile = oFSO.CreateTextFile(Server.MapPath(fileName),true)
iFile.WriteLine("<?xml version=""1.0"" encoding=""iso-8859-1""?>")
iFile.WriteLine("<ads>")
iFile.WriteLine("" & dinduno & "")
iFile.WriteLine("</ads>")
iFile.WriteLine("<options>")
iFile.WriteLine("<option display_seconds=""4"" autoplay=""true"" fade_seconds=""1"" show_pause_button=""true""/>")
iFile.WriteLine("<option buttons_alpha=""40"" buttons_rollover_alpha=""80"" buttons_space=""-1"" buttons_margin=""5""/>")
iFile.WriteLine("<option show_time_bar=""true"" time_bar_alpha=""100"" time_bar_color=""CCFF00""/>")
iFile.WriteLine("</options>")

name = ""
dinduno = ""

Set iFile = Nothing
Set oFSO = Nothing
%>
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Kurser inden for grundlæggende programmering

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester