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

    log4j Websphere

    I can run a java application without a server using eclipse ide and log4j will send emails as setup in a log4j.properties file. When I try to run the application on a Server however the emails are not sent. I have googled this problem all day and can't seem to find a reason behind this. Thanks...
  2. sqoti

    Passing parameters to exchange

    I have a simple task to pass the userId with the link to Exchange OWA. example: https:\\mycompany.com\exchange?userid=1234 It hits some kind of redirect and the resulting url in the address is this https://mycompany.com/exchweb/bin/auth/owalogon.asp?url=...
  3. sqoti

    java -jar command and return code

    I am initiating a java program from unix shell script. I want to be able to get a return code another than 0 if the java program throws an exception. My first instinct is that the java program has to be re-written to throw the return code back, but I am not sure how that is done. Is my instinct...
  4. sqoti

    Unescape a cookie???

    Is it possible while retrieving a cookie's value to unescape it in the process? I have a situation where the cookie is created in javascript by escaping the value. This puts all characters inot String Format which includes commas, and other prohibited characters while creating a cookie. I want...
  5. sqoti

    body onload sending "" as parameter

    Hello, I have a unusual circumstance that I have a variable that is surrounded by double qoutes and is passed to a javascript function. Well, when the variable is null it tries to pass the double qoutes without anything. <body onload = &quot;myFunction(&quot;@$variable(subvariable)&quot;);>...
  6. sqoti

    dynamically select dropdown option

    Please Help if you can. I am working on a site that allows searches from many places, mainly from one search box in a top banner, but also from some pages located within the site. On one of my pages I allow a search that only searches that pages' content. This is built in, the user knows it is...
  7. sqoti

    Cookie handling

    Is there a way to parse out values from a cookie using java(not javascript). For example cookie = Name = &quot;CookieName&quot; and Value = &quot;Herb,/docs/sample/file/&quot;. I want to use java to take cookie and value and split it by delimiting the comma. Hence I would have two value to work...
  8. sqoti

    cookie question

    I am new to using cookies and have a scenario I wanted to throw out here on Tek-tips to see if I can get a bite. I want to have a form submit that captures the value entered and save it into a cookie----easy Then I want to have a separate window or browser be able to get that cookie and use it...
  9. sqoti

    putting minimize, maximize, and close in a iframe

    I am new to iframes and was wondering is it possible to put these attributes in an iframe? If yes, can someone guide me to some example code or explain how it is done? Thanks in advance, Scott
  10. sqoti

    Very Stupid question!!!!!

    I am so new to XML and so lost it is not funny. I take sample xml code and just open it in a browser and what I get back is the code on the web page not the document contents in the XML. I was thinking when you put the following... <?xml version=&quot;1.0&quot;?> <oldjoke> <burns>Say...
  11. sqoti

    sending an ampersand(&quot;&amp;&quot;) in an url

    Can someone give me the syntax for sending an ampersand symbol as a variable in a URL. Example http://www.whatever.com?name=&quot;tom&shirley&quot;. I thought maybe this would work http://www.whatever.com?name=&quot;tom&ampshirley&quot;. but it did not like it. Thanks in advance!
  12. sqoti

    loading frames

    Ok, I have a 3 part frameset: 2 on the left side and 1 main on the right side. A link from the left side loads into the mainpage. ********************************** * leftframe 1 * * *************** mainpage * * leftframe 2 * * * *...
  13. sqoti

    add leading zeroes to input field

    I want to have a way that when my users enters a number into a field. It will automatically add leading zeroes up to 11(12 total digits)and submit it with the form. I am having difficulty figuring this out. I can OnSubmit and perform a function that adds the leading zeros, but cannot figure out...
  14. sqoti

    Frame loading and timing

    Has anybody ever experienced the following problem or something similar? If Yes, did you find a solution and can you share that solution? Main Page is divided into frames. Left frame has menu items and right frame is main viewing area. One selection from the menu brings up a popup window that...
  15. sqoti

    monitor size, screen resolution, and the good ole browser

    Does anybody know if there is useful script that will detect the user's monitor size and the resolution setting and can be used to make popup windows behave exactly the way the want. I know this is asking alot, but I kinda want a smart intelligent web site that will do this. Basically I have...
  16. sqoti

    Finding a business work Date using a date and a number of days.

    Ok, I have two parameters (start-date, num-of-days). I want a result date that automatically excludes weekend and possible holidays. Is there a Utility that I can call upon using COBOL that will give me this result date? I know that there are ways to get the number of workdays between two...
  17. sqoti

    Ok I have a page that has a link th

    Ok I have a page that has a link that will open a print version page on top of that window. I want to put a back button on the print version page, but I don't want the back button to print. How would I go about that. This is the code for the print version window. <HTML>...
  18. sqoti

    Form action question

    I have this ********************************************************* <Form Action =&quot;http://www.whatever.html&quot; method=&quot;post&quot; name=&quot;form1&quot;> <textarea name=&quot;notetext&quot; rows=2 cols=30 ></textarea> <BR>...
  19. sqoti

    Body tag to disable right click

    There is a onload event you can put in the body tag that will disable the right click option. I had it the other day, but accidently deleted it. It was something like < body onload = ???????() = false;> I think the event was something like config something. Can anybody help? Thanks in advance.
  20. sqoti

    Which frame will load first

    I have a window that has a list of links for the user to select. Once they select the link, it does it's processing and loads up in the same window two frames. Is there a way to control which frame loads first?

Part and Inventory Search

Back
Top