Jump to content

xmlxpert

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by xmlxpert

  1. xmlxpert

    marquee

    Hi, Thanks to all your replies but one specific thing I am looking is a circular movement, can marquee do it?
  2. xmlxpert

    marquee

    Whats up! How you guys doing? I know marquee isn't a thing for you but anyone knows a link with more examples' about it? I can't find anything on w3schools
  3. xmlxpert

    Need Help

    Hi, I dont think they have a good support, even thought their are cheap but still security is a main concern.For the past few months now no reply from emails about my concern (emails) in which they seem to have a problem about that. If you want to know more about whats happening about genuineasp.com, wait for more response about this at http://www.webproworld.com/viewtopic.php?t=68181
  4. xmlxpert

    DTD Tutorial

    Hi, I have this xml document in which I decided to write a DTD associated with it and seems like W3C tutorial isn't much of a help. Is there any DTD tutorial website hat you may have known hope that really helps?cheers,
  5. xmlxpert

    css syntax

    I see so this is I use { background: #CCDEF0; height: 109px; vertical-align: bottom; } And it works! , Thank You Brendon
  6. xmlxpert

    css syntax

    i see, its alright but how about this bgcolor? there isnt any css equivalent of this or is there?This code is actually from my site and fixing some errors from w3c validator, so I'm stack with this code then eh? Guess I cant validate then too bad :)thanks on the reply Brendon
  7. xmlxpert

    css syntax

    Hi, How do I create a CSS syntax out of this code? But seems like vAlign is not xHTML attribute so its better not to include it. <td vAlign=bottom bgcolor=#CCDEF0 height=109>
  8. Hi, I dont know whats wrong with this but seems like theirs nothin wrong (a validation from validator.w3.org)
  9. Hi, How do I disable Save As Picture ... menu in a page? I dont want anyone to simple copy paste my image files . Is this client scripting code all behind this security or on the server side itself?
  10. xmlxpert

    Increment

    Hi, Oh sorry, I just want to increment the value of <id> child everytime a new record is added.
  11. xmlxpert

    Increment

    Hi, How do I increment the value by one on the last record (the child ID) in appending a new record in my xml file? But before that, how do I know its the last record? I'm using asp and xsl.data.xml <product> <On sale> <id>1</id> <name>Television</name> <description>14 " HiFi</description> <dateadded>apr 6, 2006</dataadded> </On sale> <On sale> <id>2</id> <name>Washing</name> <description>rotor max</description> <dateadded>apr 7, 2006</dataadded> </On sale></product>
  12. Hi, What do you mean by low ball Frontpage? thus using Frontpage not appropriate?Is this what you mean?
  13. Hi, Is this code speedy enough? Im new with xml and asp. This script does is transform the data there as what you say or does it? :)default.asp<% dim xmlhttp,xmlDom,xsldom,Query set xmlhttp=createobject("MSXML2.XMLHTTP") set xmlDom=createobject("MSXML2.domdocument") set xslDom=createobject("MSXML2.domdocument") xmldom.async=false xsldom.async=false query = "<main><sql>select * from product</sql></main>" xmlhttp.Open "POST","http://localhost/www\XML\xml_27/data.asp", false xmlhttp.send query if xmlhttp.status <> 200 then response.write "Error !!!" end if xmldom.load xmlhttp.responseXML xsldom.load server.mappath(".")+"/"+view response.write XMLDom.transformNode(XSLDom)%><%set xmlhttp = nothingset xmldom= nothingset xsldom = nothing%> data.asp <% Option Explicit %><%Response.ContentType = "text/xml"%><?xml version="1.0"?><% dim xmlDom dim Conn,rs,fld,query set xmlDom=createobject("MSXML2.domdocument") Set Conn = server.CreateObject("adodb.connection") set rs = server.createobject("adodb.recordset") xmldom.load request query = xmldom.documentElement.childNodes(0).text Conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+server.mappath(".")+"\database.mdb;Persist Security Info=False" rs.open query,conn,3,1 %><recordset total="<%=rs.recordcount%>"><head><%for each fld in rs.fields%><field name="<%=fld.name%>"/><%next%></head><rows><%do until rs.eof%><row><%for each fld in rs.fields%><col><%=fld.value%> </col><%next%></row><%rs.movenext%><%loop%></rows></recordset><%rs.closeconn.closeset conn = nothingset rs= nothingset xmldom = nothing%>
  14. xmlxpert

    Body Tag

    Thanks dcole, now I know!
  15. xmlxpert

    Body Tag

    Hi, Is the tag <TBody> is different from <Body>?
  16. xmlxpert

    Pixel

    Hi, How do I know that my image file is placed within the first 500 pixels of the top of the page?
  17. xmlxpert

    Open Method

    Hi, I dont know how the Open Method of xml works. this code is actually a data island from an asp file. I get an error Invalid syntax using this; but this one works fine;
  18. xmlxpert

    xml files

    Hi, I'm planning in creating a forum and I decided to put all my data to a xml file. And so I decided this approach; section.xml = to view all sections thread.xml = to view all thread from a given sections message.xml = to view all messages from a given thread message(number).xml = to view all responses from a given message, number is a unique ID from a datafield in message.xml, a new file is created everytime a new message is made. Is this good? What is the best way in creating a forum anyways? thanks!
  19. xmlxpert

    Navigation

    Hi, Can someone help me on how to use a navigational page using xml or xsl? I cant actually find any tutorial on w3c about that. Im a asp newbie and its quite easy using that navs so why not use it on xmls.
  20. Hi, Do you think its alright if a site first connect first to a database and get a record and save this record to a xml file and read this file to a browser? Seemd like its time consuming isn't, you see im a asp newbie and connecting to a database with this is easy on me and so I decided to do that from here to there approach .
  21. Hi, i got this xml file in which I dont know how to view the data file ascendingly or descendinglyin an html file based on its date child root. if I got this code, Do I need to use XSL for this for me to view it asc or desc?<Settings> <View> <topic>XML file</topic> <date>02/05/06 1:30 am</date> </View> <View> <topic>XHTML file</topic> <date>02/05/06 1:25 am</date> </View> </Setting>
  22. xmlxpert

    XML Link

    Hi, sorry boen it still wont work, but anyways what I did was just add another root actually a URL root , even though its added work or even waste of time, thanks anyways on the reply boen... and use this instead<A dataFld="URL"> link to King Manchester from record.xml </A>
  23. xmlxpert

    XML Link

    Hi, Very well I'll put some quotes then, thanks. And im not using Firefox or Opera , but my point is the data that I want is still missing. <A dataFld=FullName href="topic.asp?dataFld="&FullName> Cannot link to King Manchester from record.xml </a>How come I couldn't get the attribute value of dataFld and reference it to my asp file?
  24. xmlxpert

    XML Link

    Hi, I got this code in which I couldn't get the data I want to be link from an xml file. default.html record.xml
  25. xmlxpert

    XML Storage

    Now I'm Refresh, Thanks boen_robot I'll do that.
×
×
  • Create New...