Jump to content

xmlxpert

Members
  • Posts

    32
  • Joined

  • Last visited

xmlxpert's Achievements

Newbie

Newbie (1/7)

0

Reputation

  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>?
×
×
  • Create New...