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

    javax.naming.NoInitialContextException

    I am new to Hibernate and I am using Hibernate 3.0, Eclipse 3.1 and Sybase as database. I've created a test program to try to insert a value into a table... However, it prompts the following error ... javax.naming.NoInitialContextException: Need to specify class name in environment or system...
  2. klwong

    UTF-8 Email with a UTF-8 URL

    Hi all, I have an email in utf-8 encoding. In the content of the email, I need to send a link in which the filename is in utf-8 string...just like this.. $content = "<a href=\"http://xxxxxx/".$filename."\"">Link to file</a>"; however, the link can not be correctly passsed and it automatically...
  3. klwong

    Append a node to a node that is created by different Document

    I have a Node object and want to use appendChild(Node node) to append another Node which is created by another Document as a child of the previous node. Surely this throws WRONG_DOCUMENT_ERR. but how can I do so ?
  4. klwong

    Warning message by Javascript

    I would like to ask how to write a warning message by javascript: for example, if the user wish to take some action, then a warning box (similar to alert) appears and said (Continue? Yes / No). If the user choose yes, the action continues; otherwise, the action is cancelled. Any suggestion...
  5. klwong

    XML-&gt;HTML with ordering

    Given a xml as an example: <nitf> ... <body-content> <p>Paragraph1</p> <p>Paragraph2</p> <hl2>Subheadline1</hl2> <p>Paragraph3</p> <p>Paragraph4</p> <table> <tr><td>data1</td><td>data2</td></tr> <tr><td>data3</td><td>data4</td></tr> </table> <media>...
  6. klwong

    XML-&gt;HTML with ordering

    Given a xml like this: <nitf> ... <body-content> <p>Paragraph1</p> <p>Paragraph2</p> <hl2>Subheadline1</hl2> <p>Paragraph3</p> <p>Paragraph4</p> <table> <tr><td>data1</td><td>data2</td></tr> <tr><td>data3</td><td>data4</td></tr> </table> <media>...
  7. klwong

    Change file upload terms

    Hi all, I am now using Chinese IE5.5. I need to upload a file in an application. So I write .. < input type=file name=fileUploadObject> And it shows a button with a Chinese word which means browsing in the IE interface. However, I want to change it back to English (Browse). How can I...
  8. klwong

    Close the child window in another page

    I have opened a child window using JavaScript in a JSP, abc.jsp child = window.open(&quot;....&quot;); How can I pass the 'child' to another jsp, say, another.jsp and I will close the window in another.jsp by child.close()? Thanks
  9. klwong

    Retrieve the rows with some complicated conditions

    Hi, I have these two tables: Table stringwid Field: wid nvarchar(10) content: 01010101 02010101 Table stringrule Field: rid integer, rulewid nvarchar(10) content: 1 01010101 1 02 2 0101 2 0201 3 01...

Part and Inventory Search

Back
Top