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 wOOdy-Soft 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 hansolo

  1. hansolo

    Web Netadmin - Loading Java Applets Failed

    You must be using the new Java Runtime Environment. Try using the older one. It should work
  2. hansolo

    Web Netadmin - Loading Java Applets Failed

    Why do my NT4 Web Admin unable to load Java applets whereas I don't have any problem with other sites Thanks
  3. hansolo

    Parse long string list value

    It works great. Thanks a million
  4. hansolo

    Parse long string list value

    Coldfusion uses database to store client variable value but the variables are stored in a field with dynamic list of string such as below: record 1: Column1 name: DATA Column1 value :#timeout=30#name=John#Status=married# Column2 name: LVISIT Column2 value: 4/11/2003 12:48:27 PM record 2...
  5. hansolo

    Using same Verisign cert in another server

    I plan to split some of the application in the existing front-end server (example: www.acme.com) into another server (example: 202.130.142.32). This new server will do a dedicated task other than the front-end server. My problem is the front-end server is currently registered under Verisign...
  6. hansolo

    ERROR : Server has not yet been opened!

    Use the SetLogonInfo of the Table object instead. It is much more stable than the LogonServer method. Use the following code: Dim i as integer For i = 1 to Report.Database.Tables.Count Report.Database.Tables(i).SetLogonInfo "","","","Password" Next
  7. hansolo

    cfcontent and network dir

    The following are the error message: An error occurred while attempting to open the file. Windows NT error number 5 occurred. Please inform the site administrator that this error has occurred (be sure to include the contents of this page in your message to the administrator).
  8. hansolo

    Integrate ASP and Coldfusion

    I need to run asp and coldfusion together but how can asp page update coldfusion session variables
  9. hansolo

    cfcontent and network dir

    I have a website that can access database in network "f:/database/test.mdb" but cfcontent cannot access "f:/database/report.pdf". Cfcontent can access the file if resides in c:/report.pdf. Would appreciate if someone finds a solution into this.
  10. hansolo

    Auto append url variables on every links

    Bram, thanks for the tips. the following examples show how my current codes look like <A href=&quot;linkX.cfm?<cfoutput>#cf_aSession#</cfoutput>&quot;> link X</A> <A href=&quot;linkY.cfm?<cfoutput>#cf_aSession#</cfoutput>&quot;> link Y</A> <A...
  11. hansolo

    Auto append url variables on every links

    Currently my website is using aSession.cfm framework which needs to append session variables to every links. It is possible to automatically append a the variables to every url links without manually keyin the variables? Thanks Hansolo
  12. hansolo

    Child top frame refresh parent top frame

    Actually, I have created a timeout window to inform user before session ends. The javascript resides in the top parent window. Every activities in the parent bottom frame will refresh the top frame. This get more complicated if a child window with frame tries to refresh the parent top frame. No...
  13. hansolo

    Child top frame refresh parent top frame

    Is there a way to refresh parent top frame from its child top frame? I can only do it if the child window is not in frame. Thanks Han
  14. hansolo

    Child window cannot open parent window

    The child window suppose to use the existing parent window and redirect the parent window to a new page but open a new window instead. All PCs that I tested using IE5. Interestingly it works few others but didn't work on other PC (open a new window). I used the following script for the parent...

Part and Inventory Search

Back
Top