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

    arguments being switched around and disappearing?

    In my code I have a drop-down menu that redirects and sets a cookie. The value of one of the options selected is the following: <option value="<isa:webappsURL name=&quot;/b2b/init.do&quot;/>?shopId=COMPANY&<%= request.getQueryString() %>">United States</option> Redirection works when...
  2. Ito2233

    Passing more than one argument to SPLIT

    Can I have more than one argument serve as the delimiter in the SPLIT method? Whenever I read about SPLIT, I read about passing one delimiter to it. However, I need to split a string on encountering both an "=" sign and a ";". Is there a way to do it? Thanks
  3. Ito2233

    JSP page not reading javascript cookie correctly

    I have a JSP page with some embedded javascript. When the page loads, it tries to detect the presence of a cookie by means of the "if (document.cookie.length > 0)" javascript statement. The strange thing is that, without a cookie present, the "document.cookie.length" statement returns either...
  4. Ito2233

    my cookie code generates an error

    I have a simple webpage to test the functionality of a cookie. THe user chooses an animal from the menu, and if the checkbox is selected, the cookie is written and the document loads another page. After the cookie is set, a ReadCookie function is called to redirect the user. When I click on...
  5. Ito2233

    Cookie Redirection

    I have a main page where the user selects a chocolate maker from a drop-down menu, and checks the "Remember my selection" box to have the browser set a cookie. This page doesn't work. When I select a region and click on the submit button, I get a "The page cannot be displayed" page. I don't...
  6. Ito2233

    page not redirecting when cookie is set

    I have a page with a drop-down menu to select a region, and a check mark to allow the region to be remembered in future sessions. When the user selects a region and clicks on "GO", the redirection works. If the user checks the "Remember my selection" box, a cookie is set, but redirection...
  7. Ito2233

    page loading based on cookie value...alternative?

    I have a cookie with a value that will control what page is loaded when the user types www.somesite.com. Apart from: PRINT "Location: $url \n\n"; and the and print $query->redirect($url), is there any other way to load a page based on cookie value? Thanks
  8. Ito2233

    Layers are being offset in Dreamweaver

    Let's say I have an image of a rectangle on my page. Then I create a layer with the same dimensions of that rectangle, and position it exactly above the rectangle. I use Dreamweaver to create that layer and to make it visible only when the mouse cursor moves over the rectangle image. When I...
  9. Ito2233

    Contents of HTTP_Cookie env. variable

    What are the contents of the HTTP_Cookie environment variable if no cookie has been created? I want to start a script by testing whether a cookie exists or not. Thanks
  10. Ito2233

    read in values from middle of file

    I have a dat file looking like this: __________ Running totals: Question 1: 60 Question 2: 123 Question 3: 99 Averages: Question 1: 4.6 Question 2: 9.5 Question 3: 7.6 ___________ I have a code to store the Running totals into a hash, such as the following: my %hash; my $key; my $value...
  11. Ito2233

    EXE file executed on client, not server....

    I have created an executable file from a script written in PERL. I have put it in the SCRIPTS directory of INETPUB, as instructed by some websites. The SCRIPTS directory is configured to allow for the execution of EXE files. But whenever a user clicks on the submit button of a form (which is...
  12. Ito2233

    reading in variable values from a file

    Total PERL newbie here. Let's say I have a text file with the following: count = 485 lookfeel = 3245 navigation = 6709 usability = 9976 detail = 8567 These are answers from a questionnaire. They are running totals. Every time a questionnaire is answered, I'd like to add to the count and to...
  13. Ito2233

    Animated GIF not working correctly

    I have an animated gif file that, when opened individually through Internet Explorer, will animate correctly. However, when it appears in the context of a web page, it does not animate. It's only 2K big. Does anyone know why this is so? Thanks
  14. Ito2233

    Styles automatically adding radio border

    I added a linked stylesheet defining font colors, font type and font size for a form. For some reason, though, my form's radio buttons now have borders around them. The text field, which before had a standard shadowed border, is now a plain rectangle. So my question is "Why have the form...
  15. Ito2233

    How can I create small pop-up windows?

    I have help file icons on my pages that, when clicked on, should open up a small window with the appropriate help text. How do link to pages that will open up in a specific size, and yet have a scroll bar? Thanks
  16. Ito2233

    Photo presentation with music

    Complete newbie here... I want to do an online photo album that's more like a presentation/movie, with music playing in the background and letter floating across the screen. I want the photos to change at specific points of the soundtrack. Is it possible to do this kind of synchronized...
  17. Ito2233

    parseInt method similar to parseDouble???

    I'm trying to get values entered into a JTextField. I have heard of using "Double.parseDouble(variable_name.getText())" to change the string into a double. Is there an equivalent method for changing the string into an int? Thanks
  18. Ito2233

    integer too large???

    I'm trying to assign values in the billion range to two LONG variables. The message I get from the compiler is: "Integer number too large", in reference to the two large numbers I try to assign. Now, long integers can hold values much larger than the ones I'm trying to assign. So why am I...
  19. Ito2233

    Slots not in correct order; Need to remove device

    I have an HP DLT Autoloader. In Backup Exec 9.1, when I click on SLOTS in the DEVICES tab, I see the tape slots, but they're now out of order! Slot 4 Slot 1 Slot 2 Slot 5 Slot 6 Slot 3 Slot 8 Slot 7 This is the first time this happens, and I don't know how to correct it. I'm trying to remove...
  20. Ito2233

    cannot find method readChar()

    Newbie here. I have the following simple program. The readChar() method, which reads in character values and returns the integer equivalent, is located in the tio package being imported. Yet the compiler keeps telling me: cannot resolve symbol symbol: method readChar () location: class...

Part and Inventory Search

Back
Top