Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Gert74

    Another problem with border-bottom-style (works in Firefox, not in IE7

    @monksnake: I do not fully inderstand why the same kind of code already worked within another div, but you solved my problem. Thank you very much! Gert
  2. Gert74

    Another problem with border-bottom-style (works in Firefox, not in IE7

    I just tried blocked names for colors, but no luck :-( Someone else maybe. Just to be complete, the header-div is surrounded by a div called wrapper. Gert
  3. Gert74

    Another problem with border-bottom-style (works in Firefox, not in IE7

    Hi, Since I was helped so well with my last question, I'm hoping to solve this problem too with a little help. My mane navigation is coded like this (html): <div id="header"> <ul> <li>home</li> <li><a href="/portfolio.php">portfolio</a></li>...
  4. Gert74

    Cannot get different linkstyles to work in same div

    Thanks Chris, That was it!! Gert
  5. Gert74

    Cannot get different linkstyles to work in same div

    Hi Chris, Thanks for your answer, but unfortunately it doesn't work. Any other suggestions? Cheers, Gert
  6. Gert74

    Cannot get different linkstyles to work in same div

    Hi, my textlinks in a certain div have the following style: #main a{ color:#6cc000; border-bottom:1px dotted #FF6600;text-decoration:none; font-weight:bold} I also have two imagelinks in the same div, but I don't want these to be underlinde (with border-bottom) so I added a style...
  7. Gert74

    Copy nodeset from one document to the other

    What I want is to copy the part in red to another xml-file (target-xml). I created two objects: 1. objBronXML - Which contains the source XML 2. objWerkXML - Which contains the target XML Then I created a string: strOutPutXML - Which contains the part in red (See above) Maybe the rest of my...
  8. Gert74

    Copy nodeset from one document to the other

    Hi, I'm working with two xml-documents: a source-document and a work-document. Whenever a new node is added to the source it should be copied from the source to the workdocument. I wondered if this could be achieved at once, instead of creating each element at once. Confused? Here's an example...
  9. Gert74

    Active Server Pages error 'ASP 0201' - Invalid Default Script Languag

    By the way, I use Windows XP SP2 and IIS 5.1 Gert
  10. Gert74

    Active Server Pages error 'ASP 0201' - Invalid Default Script Languag

    I have this very annoying problem that from one day to another I got this message for every page on the site I visit. The problem certainly isn't in my code and yes, I have tried to set vbscript in the page itself and have tried leaving it out. The default script setting in IIS is set to...
  11. Gert74

    Replace text() elements with &lt;p&gt; tekst &lt;p&gt;

    I pretty much feel like an idiot, but I'm still struggling with problem. I have the feeling I'm close to the solution, but I stil haven't got it working though. To give you a better idea of the XML I'm dealing with, I'll post the complete one instead of a fragment. I made some modifications to...
  12. Gert74

    Replace text() elements with &lt;p&gt; tekst &lt;p&gt;

    Thank you Jon, it seems to work fine. But I have to test it some more and expand it a little bit, to make it work with other tags like <img> <ul> etcetera. So the <p> can be a <img> or a <ul> as well. Gert
  13. Gert74

    Replace text() elements with &lt;p&gt; tekst &lt;p&gt;

    Input looks like this: Hallo wereld ik ben <strong>vetgedrukt</strong>. En ik dan weer niet. <p>Dit is een mooie tekst gebruik van leestekens is er natuurlijk niets aan de hand. Kijken wat er nu gebeurt.</p> Gert
  14. Gert74

    Replace text() elements with &lt;p&gt; tekst &lt;p&gt;

    After implementing the suggested solution I discovered a new problem. Editors are allowed to enter elements like <strong> or <a> etcetera. If they do that my output looks like this: <p>Hallo wereld ik ben</p><strong>vetgedrukt</strong><p>. En ik dan weer niet. </p> <p>Dit is een mooie tekst...
  15. Gert74

    msxml3.dll error '800c0008' - The download of the specified resource h

    Stop, don't look any further, I've found the solution myself. I had to use another ServerObject, "MSXML2.ServerXMLHTTP.4.0" instead of "MSXML2.XMLHTTP". Function GetXMLFile(StrFile) Dim ObjHttp Set ObjHttp = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0") 'Old Code: Set ObjHttp =...
  16. Gert74

    msxml3.dll error '800c0008' - The download of the specified resource h

    Hello, I have a question and googling didn't help me. I'm trying to get/read an rss-feed over http, but it gives the following error: msxml3.dll error '800c0008' The download of the specified resource has failed. /testpaginas/Kopie van testeventlog.asp, line 24 I'm using this code: <% Dim...
  17. Gert74

    eliminate white spaces in XSL

    Great! Can you add the solution to this thread, so it will be usefull for future users as well. Cheers! Gert
  18. Gert74

    Replace text() elements with &lt;p&gt; tekst &lt;p&gt;

    Hi all, I have the following problem. I have an XML file like below. I want to output this as valid xhtml (with xslt) and therefore all text-elements without an html-tag should be surrounded by a paragraph-tag. Although I'm pretty sure that it's relatively easy, but I don't know how to do it...
  19. Gert74

    eliminate white spaces in XSL

    Maybe with a template like this: <xsl:template name="removeSpaces"> <xsl:param name="text"/> <xsl:choose> <xsl:when test="contains($text, ' ')"> <xsl:variable name="bufferBefore" select="substring-before($text, ' ')"/> <xsl:variable name="newBuffer"...
  20. Gert74

    Howto handle one form with multiple submit buttons (image buttons)

    I agree with you that ASP.Net offers more possibilities, but in this specific case I'm hired by this customer to make a site on their existing platform (in combination with Tridion CMS), which happens to be ASP. Interesting point about dual development in ASP.Net though, something to...

Part and Inventory Search

Back
Top