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: MarcusH
  • Content: Threads
  • Order by date
  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 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
  4. 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;)...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. MarcusH

    Database design problem

    Hi, I have a database design problem that I'm finding difficult to resolve. I'm new to database design and would very much appreciate any help. I'm trying to as much as is possible conform to the guidelines laid out in the principles of normalization. I apprreciate that sometimes for...
  12. MarcusH

    Database design problem

    Hi, I have a database design problem that I'm finding difficult to resolve. I'm new to database design and would very much appreciate any help. I'm trying to as much as is possible conform to the guidelines laid out in the principles of normalization. I apprreciate that sometimes for...

Part and Inventory Search

Back
Top