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 TouchToneTommy 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: manitoba
  • Content: Threads
  • Order by date
  1. manitoba

    Compound key problem - creative solution needed

    I use the same instance of the database to service multiple customers. The customer ID is an int generated through @@IDENTITY. This table looks like: CUSTOMER customer_id int, ... I want all other tables to have customer_id as part of a compound key. For example, the table to store people...
  2. manitoba

    xml:lang not working in XPath expression

    Hi, From C# I am trying to use an XPath expression with "xml:lang" in it but the compiler does not like it. Any idea how to do this in .NET? XmlDocument doc = new XmlDocument(); doc.Load(@"C:\text.xml"); string test = doc.SelectSingleNode("/a/b[string(@xml:lang) = '']").InnerText();
  3. manitoba

    Using xml:lang in .NET

    Hi, From C# I am trying to use an XPath expression with "xml:lang" in it but the compiler does not like it. Any idea how to do this in .NET? XmlDocument doc = new XmlDocument(); doc.Load(@"C:\text.xml"); string test = doc.SelectSingleNode("/a/b[string(@xml:lang) = '']").InnerText(); Thanks.
  4. manitoba

    IIS 6.0 And ASP Security Question

    IIS 6.0 has a security feature where an ASP script from one virtual root cannot access the file system mapped to a different virtual root. Does anyone know how to disable this?
  5. manitoba

    IIS 6.0 Security Question

    IIS 6.0 has a security feature where a script from one virtual root cannot access the file system mapped to a different virtual root. Does anyone know how to disable this?
  6. manitoba

    How to turn off SP 2 Security Alerts pop-up messages

    After installing SP 2, when I login, I get pop-up messages from the taskbar saying "Your computer may be at risk" or "Your antivirus may be out of date". How do I turn off these pop-ups.
  7. manitoba

    Connect to Linux via Windows X-Server

    Hi, I am evaluating a PC X-Server (Exceed) and I am trying to connect to a Mandrakelinux 10.0 box. What do I need to do on the Linux box to enable a connection? Thanks
  8. manitoba

    File Date Last Modified

    Hi, This seems like a supid question but how do you get a file's last modified date? I see the function filemtime() to get the last modified time but where is the filemdate()? Thanks.
  9. manitoba

    How to determine the system TEMP folder

    Hi, Does anyone know how to get the temp folder path from PHP? I am looking for a function that will return something like "/tmp" or "C:\WINDOWS\Temp". Thanks.
  10. manitoba

    Which version of Linux to use?

    Hi, I am new to Linux. Which version of Linux should I use on a x86 box? I plan to use it as a Web server. Thanks.
  11. manitoba

    How to build a data bound control

    Hi, I've build a simple control (similar to a textbox) in VC++ for use in Access. How do I make the control data bound like other controls in Access? If someone can point me to an article or tutorial on the topic, that would be great. Thanks.
  12. manitoba

    How to avoid 405 when POSTing to a static page?

    I need to call a static page with an HTTP POST and get the contents of the page. When I do this, I get "405 Method not allowed". How do I configure IIS to accept GET and POST for say .xml extension files? Thanks.

Part and Inventory Search

Back
Top