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!

Recent content by MarcusH

  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.

Part and Inventory Search

Back
Top