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 Wanet Telecoms Ltd 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. MarcusH

    XML and loadbalancers

    Hi there, I have problem whereby my ASP/XML code doesn't appear to work properly on a server that is behind a loadbalancer. My purpose of the code is to allow websites to share content from a single source. The code is: <% Response.Buffer = True Dim objXMLHTTP, xml Set xml =...
  2. MarcusH

    ASP XML problem

    Hi there, I have problem whereby my XML code doesn't appear to work properly on a server that is behind a loadbalancer. My purpose of the code is to allow websites to share content from a single source. The code is: <% Response.Buffer = True Dim objXMLHTTP, xml Set xml =...
  3. MarcusH

    Can't put &quot;£&quot; into xml

    Hi I've found the answer to my question. I simply added <?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot; ?> Marcus
  4. MarcusH

    Can't put &quot;£&quot; into xml

    Hi How can I get xml to accept the &quot;£&quot; sign? The below does not work <root> <test>£12.99</test> </root> My schema is defines this as datatype string. Your help would be much appreciated. Thanks Marcus
  5. MarcusH

    Client-side xml works but server-side doesn't

    Thank you for pointing me in the right direction. I changed the content type to text/html and it worked. Thanks Marcus
  6. MarcusH

    Client-side xml works but server-side doesn't

    Hi, I'm having a problem with getting code which works on the client side to work on the server in ASP. This code works: <script language=&quot;VBScript&quot;> set xmldoc = CreateObject(&quot;Microsoft.XMLDOM&quot;) xmldoc.async=False xmldoc.Load (&quot;clientList.xml&quot;)...
  7. MarcusH

    Client side XML works but server side does not

    Ok thanks. I'll put this into the ASP forum along with the answer to your question.
  8. MarcusH

    Client side XML works but server side does not

    Hi, I'm having a problem with getting code which works on the client side to work on the server in ASP. This code works: <script language=&quot;VBScript&quot;> set xmldoc = CreateObject(&quot;Microsoft.XMLDOM&quot;) xmldoc.async=False xmldoc.Load (&quot;clientList.xml&quot;) set...
  9. MarcusH

    VbScript Regular Expression

    Hi, I'm having a problem with I VBScript regular expression. I want to find FROM: xxxxx (where xxxxx is a number) when it is not proceded with TO: xxxxxx So in TO: 123456 FROM: 654321 FROM: 454545 I only want to find FROM: 454545 but I get FROM: 654321 as well. The regular expression...
  10. MarcusH

    Problem authenticating Web server in SQL Server

    Thanks very much for that. That's helped a lot. Regards Marcus
  11. MarcusH

    Problem authenticating Web server in SQL Server

    Hi, I'm trying to give my web server domain login permissions on SQL Server which is on a seperate box. I do this by trying to add a login in SQL Server Security with this format DOMAINNAME\IUSR_DOMAINNAME (which is the anonymous username on the web server) as the name, and DOMAINNAME under...
  12. MarcusH

    SQL Server 2000 table data type

    That helps a lot. Thanks very much for that. Plenty of food for thought. Marcus
  13. MarcusH

    SQL Server 2000 table data type

    Hi, I've seen that the new 'table' data type in SQL Server 2000 is a better option than temporary tables because the data is kept in memory for the duration of the query (stored proecedure or batch). Although this sounds good to me as far as speed goes, I'm a bit concerned about memory. If I...
  14. MarcusH

    Problem with return value from Stored Procedure

    Found a solution to my problem. It can be seen here:support.microsoft.com/support/kb/articles/Q253/2/40.asp Marcus
  15. MarcusH

    Problem with return value from Stored Procedure

    Thanks for your response. I'll try your suggestion.
  16. MarcusH

    Problem with return value from Stored Procedure

    Hi, I'm having an unusal problem with getting a return value from my stored procedure. To test it, I'm deliberately putting a null into pinnum which does not allow nulls. When I return the value in SQL Server Query Analyzer, it gives me the correct value i.e not 0, but printing the value in my...
  17. MarcusH

    Problems with client-side FileSystemObject

    Hi, I should have given my function a name. Just an error when I typed it into the forum. This is not the problem. Marcus
  18. MarcusH

    Problems with client-side FileSystemObject

    Hi, I'm trying to use the client-side javascript code below in order to get the size of a file on the client machine, but it keeps coming up with 'Automation server can't create object'. It fails on the 'fso = new ActiveXObject(&quot;Scripting.FileSystemObject&quot;);' line. <script...
  19. MarcusH

    Database design problem

    Hi, Yes a member will be presented with a result set of other members that suit their search criteria as defined in the search criteria table. Details such as we're the members are from will also be given. Thanks Marcus
  20. MarcusH

    Database design problem

    Thank you very much for your response. I'm going to put all related locations together in the same row, so for Beeville, I'll put as it's parent, Texas and USA as it's grandparent (so to speak) so that I won't have to do any joins to get what is above or below it. Regards Marcus

Part and Inventory Search

Back
Top