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 Mike Lewis 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. calgarychinese

    How to include XML in XML file?

    Sorry, it's probably a bad choice of word when I used "parameter" because it sounded like I'm trying to call a function. So basically, what I just want to do is to put the copyright information in one file, and each XML file can include it. However, the copyright informatio needs to print the...
  2. calgarychinese

    How to include XML in XML file?

    Hi there I guess this question has been asked to death - so here I bring it up again..... I have this XML page and right now there is an <about> tag that contains information the page name and copyright information. However the copyright information contains something like 1998-2006 and so...
  3. calgarychinese

    Debug with Microsoft Development Environment

    Hi there Before I was able to use Microsoft Devleopment Environment to debug my asp code. I did that by going to Microsoft Development Environment 6.0, go to Debug menu -> Processes, and will see inetinfo.exe and then I can attach it. But lately, (and I don't know if it's got anything to do...
  4. calgarychinese

    Debug with Microsoft Development Environment

    I don't use project though, I have all individual asp files and I just start the debugger that way to trap one of the many ASP pages that I need to debug. Would uninstalling the whole Symantec help?
  5. calgarychinese

    Debug with Microsoft Development Environment

    Hi there Before I was able to use Microsoft Devleopment Environment to debug my asp code. I did that by going to Microsoft Development Environment 6.0, go to Debug menu -> Processes, and will see inetinfo.exe and then I can attach it. But lately, (and I don't know if it's got anything to do...
  6. calgarychinese

    Norton internet security with VPN?

    Hi there I've always had been connecting to the company's VPN from home. Yesterday it worked fine. Last night I installed the NOrton Internet Security and Norton Anti Virus. This morning when I tried the VPN I got Error 800: unable to establish the vpn connection. Does it sound like the...
  7. calgarychinese

    what version of IIS am I running?

    Hi Sheco Thanks - is there somewhere on my own computer that I can look at? And what if my clients really run IIS and do not have msadc? My app needs msadc to work (on my computer it's located at C:\Program Files\Common Files\System\msadc ) thanks
  8. calgarychinese

    can't create new txt file

    Hi linney Thanks - but that is a lot more complicated than my technical knowledge could handle. I went to HKCU\Software\Microsoft\CurrentVersion\Explorer\Discardable\PostSetup\ShellNew and viola, NOTEPAD isn't on that list either. But I don't know what that content of the reg file is...
  9. calgarychinese

    can't create new txt file

    Hi there Used to be able to right click in the windows explorer, and then select New, and then the Notepad will come up so I can create a blank .txt file. It's all of a sudden missing.... Does anyone know how I can add the Notepad back to the context menu? Thanks (If my question is unclear...
  10. calgarychinese

    what version of IIS am I running?

    Hi there What is the way to find out what version of IIS am I running? Today I came across this page http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/55051d7c-d65b-451e-96e5-3ee5d49e3022.mspx?mfr=true and I'm worried because for the application that I'm writing to...
  11. calgarychinese

    What to do with RDS?

    Hi Sheco Is AJAX endorsed by Microsoft? Or is it actually an MS technology? Thanks (your reply is very unwelcomed...... haha... sigh.... but I guess sometimes it's the way it is....)
  12. calgarychinese

    What to do with RDS?

    Hi there I got this application (big one, like 150 asp pages or so) that I'm maintaining now and that has been in production for a long time. What worries me the most is the technology it uses. It uses client side RDS which Microsoft has since stopped supporting. So the application is fine...
  13. calgarychinese

    About window.dialogArguments

    Thanks PHV. Perfect.
  14. calgarychinese

    About window.dialogArguments

    Hi tsuji Yeah that would actually work! So many people (in other forums) have kept giving me javascript but what I need is vbscript (even if my task doesn't require vbscript I have been dying to find out if there is an equivalent). If you can give me a quick answer though, you've disabled...
  15. calgarychinese

    Datafld Bound control problem

    Hi tsuji Thanks for your quick response! 1. first, the missing > is simply my typo. They are closed in my code. 2. what you quote... hmmmm my code does client-side processing, so even the database retrieval is done via the old client side RDS object... so your server-side won't work. I...
  16. calgarychinese

    ASP method to generate CDDB DiscID?

    Hi there I have downloaded the DiscIDCalc program from CDDB. I've used it a lot because I've written my own application for my CD collections (keeping track of the track information of each CD, track duration etc). I've already got all my CDs into the application, I'm now just going through each...
  17. calgarychinese

    About window.dialogArguments

    Hi there If I'm in a page and am trying to call a modal window dialog, I'll pass in some parameters. Now I do in javascript the following: var objParam = new Object(); objParam.argParam1 = "A"; objParam.argParam2 = "B"; And in the modal window I process it like this in vbscript: dim a, b a =...
  18. calgarychinese

    Datafld Bound control problem

    Hi there I have a table on my asp page that is bound to SQL Server. The table is like this <tbody> <tr> <td><div id="column1" datafld="EmployeeID" </div></td> <td><div id="column2" datafld="LastName" </div></td> <td><div id="column3" datafld="FirstName" </div></td> <td><div id="column4"...
  19. calgarychinese

    Conditional where...?

    Thanks a lot. Didn't expect to get a solution so fast :) THanks CC
  20. calgarychinese

    Conditional where...?

    bborissov THANKS! I didn't know you can do that. One question though, in my case DateValue is mandatory in both tables A and B, so what you did is fine, but if it is an optional field, then the part where you check against NULL is it true I'll replace that field by some mandatory field, such...

Part and Inventory Search

Back
Top