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 SkipVought 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. Verbetex

    Indexed Property initialization problem

    Sorry, the problem has been traced to some other code which is overwriting the value based on an xml schema.
  2. Verbetex

    Indexed Property initialization problem

    Hi I have a form property in a DynaValidatorActionForm as follows: <form-property name="AttName" type="java.lang.String[]" size="5"/> However, when I use the following code in my jsp page: <logic:iterate id="element" name="MyForm" property="AttName" indexId="counter"> <tr> <td...
  3. Verbetex

    Anchor references in the URL

    Hi I've got a php script that processes some information etc... when the script finishes, it redirects to a page using: header("Location: ../" . $address); Where address would be something like "mypage.phtml#end" This is where the problem is, when I goto this page using IE, the anchor tag...
  4. Verbetex

    Uninstalling Linux

    OK, here's my situation: On my HDD, I have the following partitions: FAT32 WinXP Boot Partition (Containing Grub) Ext3 Which had Linux on (Now deleted) Ext3 Linux Swap (Now deleted) What I want is: Fat32 WinXP But if I'm right, if I delete the boot partition, then I'll not be able to boot to...
  5. Verbetex

    File download from servlet

    I have got it working so that a user submits a form that has a list of files and he selects the ones he wants by checking their checkboxes. at the moment, I can make it so that the first file is downloaded (via the ssave as dialog popping up). What i want is for one popup for each file...
  6. Verbetex

    File download from servlet

    Does anyone know how I can make a link on my site that currently points to a servlet, work so that the servlet can return the files it finds based on the parameters passed to it so that the user can download them? In short, I want the user to be able to click on a link, and have the save as...
  7. Verbetex

    Updating Data in Access? When Does it happen?

    sure am. I have one that I use to execute the INSERT SQL statement, then another which queries that data, but it's not found until the page has loaded and the query is run again from another page.
  8. Verbetex

    Updating Data in Access? When Does it happen?

    I've got some ASP/ADO code which inserts the data submitted by the form into an Access Database. This works fine, and the data goes in, however, if I try to query the database in the same ASP file, the data does not exist yet. Is this because the ASP is executing faster than the database...
  9. Verbetex

    Response.Redirect and Zonealarm

    I have IIS 5.0 running, and in a ASP script, I have a Response.Redirect(&quot;url&quot;) line. This works fine when Zonealarm is not loaded, but when it is running, then the browser does not redirect. How can I rectify this? Cheers
  10. Verbetex

    IIS Redirect and ZoneAlarm

    I have IIS 5.0 running, and in a ASP script, I have a Response.Redirect(&quot;url&quot;) line. This works fine when Zonealarm is not loaded, but when it is running, then the browser does not redirect. What properties do I need to set so that IIS all works properly while it is running? Cheers
  11. Verbetex

    Session_OnEnd

    I'm trying to keep a list of currently logged in users in a database table. When people log in, it adds them fine, but when they close the browser, I want to remove them from this table. Am I right that the Session_OnEnd method in Global.asa is run when the browser is closed? If so I was...
  12. Verbetex

    Perl Modules

    I've got a script which i execute, and it has the line: use IndexHandler; I have created the package IndexHandler.pm, and when I run my script, it loads it fine, and I can run one of the subroutines in IndexHandler.pm. However, I need to pass 3 variables to the subroutine. I've tried this by...
  13. Verbetex

    Deleting from a Hash

    That's the one! Cheers mate. I was reading in the words from a line with one word on each line. Works now! Cheers :-)
  14. Verbetex

    Deleting from a Hash

    My data is set up so i have a hash within a hash. After entering into the hash all of the data, I want to delete certain elements from the main hash. I'm using: foreach $x (@deleteWordList) { delete $wordList{$x}; } But when i search through the Hash after this for an item that should have...
  15. Verbetex

    Form based file upload

    I'm doing a project in which I can't use anyone elses code (i.e. I cannot use any pre made components for file upload) Does anyone know of a site that can teach me how to do form based upload without using any other pre made components? TIA
  16. Verbetex

    Security

    I've been looking on the net for things like that, well more particularly information on how to do it myself, but have found not a lot. I've resorted to using my own system using a database for the username and passwords. When a user successfully logs in, then i set a property in the session...
  17. Verbetex

    Problem when access site via IP

    I have set up IIS, and have my own password system set up that uses a database containing usernames and passwords. Everything works fine when going through localhost, but when i access it via http://ip/... (while connected to the internet) I can browse the asp pages etc, but when i try and log...
  18. Verbetex

    JDBC-ODBC and sql.Date

    I'm trying to use a ResultSet to manipulate data, and update my table in Microsoft Access 2000. It works fine for updateInt(int x) etc.. and will accept my sql.Date into the ResultSet. However, when I call the update or insertRow methods on the resultSet when the date has been changed, Access...

Part and Inventory Search

Back
Top