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

  1. klwong

    javax.naming.NoInitialContextException

    ok. thx
  2. 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...
  3. 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...
  4. klwong

    upload FTP or HTTP without limit

    I also have problems in setting unlimit in uploading files using PHP.. but I'm using Linux with apache2, haven't php.ini files.. where can I change the configuration?
  5. klwong

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

    oh.. I've solved it.. by Document.importNode(Node, boolean) Thx
  6. 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 ?
  7. 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...
  8. 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>...
  9. 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>...
  10. 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...
  11. klwong

    Close the child window in another page

    Hi, Yes, jsp is similar to asp such that it can form a HTML with javascript functions what I want to do is something like that.. Window 1: abc.jsp -> new.jsp | | Winodw2: child open child close when an event is triggered How can I pass the child to new.jsp? and how...
  12. 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
  13. klwong

    Retrieve the rows with some complicated conditions

    Yes, I want to get the rows with RID 1 and 2 but before getting the result, I don't know the answer I get should be 1 and 2, the reasons to get those because the corresponding rulewids both are similar to stringwid.wid. ie. (in the two rows of RID 1: row one: rulewid is 01010101 similar to row...
  14. 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