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 bkrike 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: *

  • Users: Delameko
  • Content: Threads
  • Order by date
  1. Delameko

    Problem with saving links in XML file

    Hi, I hope you can help me. I'm try to save a link to my xml file. The link is like this: http://www.thisisnottingham.co.uk/displayNode.jsp?nodeId=133942&command=displayContent&sourceNode=229135&home=yes&more_nodeId1=133951&contentPK=16627627 When I try and load the XML file I get the...
  2. Delameko

    Dreamweaver not laying out page properly

    Hi, previously we've been writing webpages with EditPad. We decided to take the plunge and pick up Dreamweaver. But when we open our website (which displays correctly in both IE and FF, and Frontpage) in Dreamweaver, most of the formating seems to be lost. We have a table across the top of...
  3. Delameko

    Web Matrix

    Is it possible to get the old web matrix for ASP 3.0 anywhere? (I'm assuming my memory isn't playing tricks on me and there was a pre-.NET web matrix..?) Or can I use Web Developer express? Can I do ASP 3.0 with that? Thanks for any assistance.
  4. Delameko

    Converting table values

    I've been given a database to work with containing 3500 records. After trying (and failing) to get it to work properly with my ASP code I discovered that the three date fields (day 00, month 00, year 0000) were all text fields. Is there any easy way convert these to number/dates? (Maybe...
  5. Delameko

    Sorting question...

    I'm not an ASP developer, but I've been given a (seemingly easy) task to complete. The code below is going to be put into an iframe. Its 'what happened on this day' type thing, showing birthdays, deaths, etc. So I need to only show the records with todays date, and only show 3-4 entries at a...
  6. Delameko

    Forms - Sending a file via email

    Greetings, is there a way to send a file via a form to an email address without using server side scripting? I'm trying to create a form for my users to upload a file to me, but my sites architecture (which I'm not involved in) won't let me use ASP in any fashion. Thanks in advance,
  7. Delameko

    Seeing the IP behind the proxy

    The website I work for currently have a problem where the site only reads peoples proxies, this is a major problem because we block by IP and there are currently 60 people trying to post using the same proxy web cache server, and if any of them swear the system automatically blocks their IP...
  8. Delameko

    Displaying an id?

    How do you go about about displaying an id attribute? I'm doing a simple xsl thats going to output the name and the corresponding id so I can have list for easy reference.
  9. Delameko

    Making compatible with Mozilla

    How do I go about making a Mozilla-compatible version of this? Thanks. var mypop; var str; function verify() { if (xml.readyState != 4) { return false; } } var xml = new...
  10. Delameko

    Simple problem - spaces (xsl)

    I have an address in the XML thats divided into parts. In the XSL I'm displaying it like so: <xsl:value-of select="streetNumber" /><xsl:text>&#160;</xsl:text> <xsl:value-of select="streetName" />,<br /> <xsl:value-of sel... etc etc The problem is that not all entries have a streetNumber...
  11. Delameko

    Null or not an object

    I'm getting this error: 'document.getElementsByTagName(...).0' is null or not an object - but only when its on the server. It works fine when I'm running it off the harddisk. I found lots of other posts about this but none of their solutions worked for me. When you click the button it parses...
  12. Delameko

    Help with a simple script involving images

    I won't bore you with all the details, but I'm working on a site thats updating dynamically from an XML. In the XML there's no reference to images (as its from an outside source) so I've decided to use the ID code thats with each entry to dynamically select which image to use. The HTML/XSLT...
  13. Delameko

    Putting xsl into html?

    Back again (I'm sure you're getting sick of my, Jonty [wink]) Is there anyway to put xsl into a html tag? In my xsl file I have a link to an image file: <img src="?Image?.jpg" /> As there are no links to images in the XML I want to use an ID <venue venueID="?Image?"> JontyMC set me up in a...
  14. Delameko

    And operator (or a better way?)

    Hi, this is a follow-up to this thread. I've tried a load of different things but I can't get any to work, and I feel like I'm missing something. I need to sort my entries by the venueID. I don't need to do it dynamically (at this stage anyway). I need to be able to alter the xsl to say...
  15. Delameko

    Help with linking elements...

    I had a long look through this forum and tried the various examples people had supplied for other peoples problems, but I couldn't figure out how to tailor them to my own. Its a simple cinema search for local cinemas. The idea being that each cinema will have a different XSL with the cinema...
  16. Delameko

    Simple boolean question (Beginner)

    I've got a boolean value being returned from a class, and I'm trying to create an if statement, something like: if (boolean == true) cout << &quot;True!&quot;; else cout << &quot;False!&quot;; Well its not working as it always finds it true. This is because the boolean == true is an...
  17. Delameko

    Unresolved External - Linking Error

    Hi, I'm hoping someone can help me. I'm using Visual C++ 6.0 on Win XP (for a university module). I'm completely new to C++ and haven't used VC++ before. When I try to build this code: #include <iostream.h> int main() { cout << &quot;Hello World&quot; << endl; return 0; } I get this...

Part and Inventory Search

Back
Top