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 dencom 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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?
  6. royboy75

    How to tie events to different parts of an image?

    Hello, I'm not sure if this is the right forumj for that but I'll try... I have a requirement for our website to embed an image of the globe and when the user hovers on each country he gets some data related to this country pulled out from a DB. Suppose I already know how to pull the data, I...
  7. royboy75

    How to use window.open method in an &lt;a&gt; tag?

    Hello, I have a standard link in my html <a href=".... I would like to override it's normal behaviour and open a window that I decide it's size, toolbar ect. For that, I have added it an onClick event and wrote window.open in the appropriate javascript function. The problem is that the target...
  8. royboy75

    How to add hidden column to an html table

    Hello, I have an html table that I would like to add a hidden column to, each table data in this column will have a hidden input field. How do I do that?
  9. royboy75

    How to transfer the table data as a parameter?

    Hello, I have a table looking something like this: [code] <tr> <td> A </td> <td> <a href="page.jsp"></a> </tr> <tr> <td> B </td> <td> <a href="page.jsp"></a> </tr> [code] I would like to transfer to the jsp as a parameter the content of the <td> tag (A and B in this case). How can I do it?
  10. royboy75

    Need example for css design inheritance

    Hello, Suppose I've created a certain design A in my css file. I would like to create a similar design B only change one property in it, for example the text-align. Instead of copy-paste the entire design from A to B I assume there is a way in css to state that design B inherits it's design...
  11. royboy75

    How to make a selected link from a list of links bold?

    Hello, Suppose I have a frameset with a menu on the left with some links and a data on the right. Pressing a link in the menu on the left opens the relevant html page on the right. I would like to add the very common effect that bolds the selected link now presenting it's page, same as in the...
  12. royboy75

    &quot;You are not authorized to view this page&quot; on simple html

    Hello, I have created a simple "Hello World" html file and set it under the wwwroot folder. When I try to browse it: http://localhost/hellp.html I get: "You are not authorized to view this page". On the Home directory tab of the default web site I've marked all the checkboxes (read, write...
  13. royboy75

    How to embed one html page in another?

    Hello, Suppose I have two html pages: A and B. I would like to embed html B inside html A at some point so from this point on the content of html B will be seen. When this content ends the content of html A continues. How do I do that?
  14. royboy75

    How to embed excel file in HTML to be viewed inside it?

    Hello, I have an excel file that I would like to embed inside html so when the user browses to this html he sees the excel file's content inside the page using the browser's excel built in plug-in. How can I do that? Roy
  15. royboy75

    Excel - how to repeat a Column but dismiss one row from it?

    Hello, In excel's page setup on the sheet tab you can specify "Columns to repeat at left". I would like to repeat Column A but inside this Column I don't want to repeat row 1. Is it possible to specify this in the formula?
  16. royboy75

    Need help in first steps in an example I created for xml schema

    Hello, I am trying to create a simple XML which refers to an XML Schema file, but it looks like the XML doesn't care about the Schema it refers to (both files are sitting on the same directory). Here is my test.xml file: <?xml version="1.0"?> <note xmlns="http://www.me.com"...
  17. royboy75

    Is it possible to create an xml and xsl on the same file?

    Hello, Is it possible to create an xml and xsl on the same file (instead 2 seperate files) and refer to the xsl part from the xml part? Roy
  18. royboy75

    Can xml transfer parameters to xsl through it's URL?

    Hello, I am referring to an xsl file from xml in the standard way: <?xml-stylesheet type='text/xsl' href='"<xsl_location>"'?> My question is if it is possible to transfer parameters from the xml file to the xsl through the <xsl_location> url and then use them conditionally in the xsl? If yes, a...
  19. royboy75

    Need help in regexp

    Hello, I am trying to replace something in a string using: query.replaceAll("COUNT(*)", "*"); But I get: java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 6 COUNT(*) ^ Can someone please help me with this?
  20. royboy75

    Unable to uninstall a software that were not removed correctly

    Hello, I have installed the adobe reader for Pocket PC through my computer. The installation also installs this software to the regular PC. I have accidentaly deleted the installation folder from the Program Files folder without removing it first from Add/Remove Programs. The result now is that...

Part and Inventory Search

Back
Top