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: *

  • Users: royboy75
  • Order by date
  1. royboy75

    How to read a parameter from another page?

    Thanks for the prompt response Feherke.
  2. royboy75

    How to read a parameter from another page?

    Hello, I am referring to another html page using the standard link tag: <a href="intro.html"... Suppose I am transferring a parameter to this page, like this: <a href="intro.html?myVal=hello"... Is it possible to read it from the intro.html file using client side technologies, such as plain...
  3. royboy75

    How to &quot;force&quot; a page to be requested on every visit to it?

    Hey, One more question: Is it possible to do this forcing on a plain html page as well?
  4. royboy75

    How to &quot;force&quot; a page to be requested on every visit to it?

    The tip you refered me to did the trick! :)
  5. royboy75

    How to &quot;force&quot; a page to be requested on every visit to it?

    Hello, I have a page which is using AJAX to call a JSP that gathers some information from the backend database and sends it to the client for display. Everything is working OK. The problem I have is that if I change the database content is changed the new content is not displayed to the user...
  6. royboy75

    How to transfer a Javascript valiable as parameter to a jsp method cal

    Here is my entire page: <%@ page language="java" import="com.bp.gpd.services.POPCount" %> <html> <head> <%! String country = null; POPCount popC = new POPCount(); %> <script language="JavaScript"> function setCountryData(currentObj) { currentObj.title = '<%=popC.getCountByCountry()%>' }...
  7. royboy75

    How to transfer a Javascript valiable as parameter to a jsp method cal

    Hi Dan, Now that I am thinking about it I don't want to submit the form. What I have is a client image map of the globe. Whenever the user hovers on a country the above javascript function is being activated. It calls a java object that, based on the country the user is hovering above, pulls...
  8. royboy75

    How to transfer a Javascript valiable as parameter to a jsp method cal

    Hi Dan, Can you show me a simple example of such combination when submitting a form?
  9. royboy75

    How to transfer a Javascript valiable as parameter to a jsp method cal

    Hello, I have this function in Javascript, which is calling a server-side Java method and is working fine: function setCountryData(currentObj) { var country = currentObj.title; currentObj.title = '<%=popC.getCountByCountry()%>' } I would like to tansfer the var country ar a parameter to...
  10. royboy75

    Need help in date formats

    Thanks Tim, I was wondering around Date formats when I could have done it in strings :)
  11. royboy75

    Need help in date formats

    Hello, I am pulling from a database a date which is a string with this representation: For February 2007 it will be 200702, For March 2007 it will be 200703 and so on. I need to transfer it to this format: 02.2007, 03.2007 to use it in a different source. Can someone help me with this...
  12. royboy75

    How to imitate in an &quot;alt&quot; property?

    You are right, it is the title and doing nothing did the trick :)
  13. royboy75

    How to imitate in an &quot;alt&quot; property?

    Hello, I would like to put some long text at the alt property of a certain element. Is it possible to include in this text some line breaks (i.e. <br>) so the text won't "spread" on the screen?
  14. royboy75

    How to tie events to different parts of an image?

    Got it and found a really nice tool to do the job called mapedit. Thanks a lot!
  15. royboy75

    How to tie events to different parts of an image?

    I've done some googleing and I see what you mean. Which Javascript event I can tie to the <area> tag?
  16. royboy75

    How to tie events to different parts of an image?

    Hi Jeff, Sounds Chinese to me, can you guide me through here please?

Part and Inventory Search

Back
Top