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 Chriss Miller 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 manitoba

  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

    Thanks Chris, but it's not parent paths that I am after. Say in IIS 6.0 you create 2 Web sites and map them to: C:\Site1 C:\Site2 If I write an ASP script that runs in Site1, it cannot access the folder C:\Site2 File permissions on both folders are set to Full Control for Everyone.
  5. 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?
  6. 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?
  7. manitoba

    Need an HTML editing control

    Bill, Xstandard is an ActiveX control - not a stand-alone application.
  8. manitoba

    Need an HTML editing control

    I've been using Xstandard Lite (free) version for about a year and the Pro version for about 3 months. This editor is great. It's the only editor that is standards-compliant. The output of this editor is real XHTML that you can parse using an XML parser. This is a really nice editor! You can...
  9. 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.
  10. manitoba

    Connect to Linux via Windows X-Server

    I think Exceed is trying to use telnet to start the session on the Linux box. Telnet is not running. It is not listed in services and I tried to connect manually and failed. How can I verify that telnet is indeed installed. Then, how to I start the telnet service?
  11. manitoba

    Connect to Linux via Windows X-Server

    I am not sure Mandrakelinux comes with telnet,ssh,and deslogin. I check the services and these programs were not listed.
  12. 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
  13. 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.
  14. manitoba

    How to determine the system TEMP folder

    Thanks. I am going to use this:getenv("TEMP");.
  15. 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.

Part and Inventory Search

Back
Top