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 TouchToneTommy 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: kanghao
  • Order by date
  1. kanghao

    how to delete all style attributes

    I want to delete all style attributes in some html files. How can I delete them? are there easy ways? thanks.
  2. kanghao

    dynamic table rows...

    I mean I want to add table rows in javascript and I tried. but I had a infinate loop. the input elements in each table row are named, so they can be processed by action pages or servlets. the names are "string"_"number" and they should be incresed by 1. here is the code. <!DOCTYPE html PUBLIC...
  3. kanghao

    Is it possible to include html page in another html page?

    MrGTheBeast You mean I can include pages if the page is a just html?
  4. kanghao

    Is it possible to include html page in another html page?

    isn't it supposed to work in asp or jsp? I have two files below. help me please. include_test.htm <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Untitled Page</title> </head> <body> <!--#include file="text.txt" --> </body> </html> text.txt <b>aaa</b>
  5. kanghao

    Is it possible to include html page in another html page?

    Is it possible to include html page in another html page? I'm saying static html page.
  6. kanghao

    usb memory unwritable.

    usb memory is unwritable. unformatable, but it is deletalbe. It's formatted FAT32, but windows xp recognizes as NTFS. according my company code, I have to install a media security program. Should I change cmos settings? is it possible to ignore it? so annoying.
  7. kanghao

    parsing a file user is uploading without save it to server.

    I'm not saying POI or something. Just a text file is ok.
  8. kanghao

    parsing a file user is uploading without save it to server.

    I want to parse the file(Excel file) user is uploading, without save it to server first. I mean in memory. How can I do that?
  9. kanghao

    simple trigger...

    actually it's not "user". but it seems a recursive trigger. doesn't it?
  10. kanghao

    simple trigger...

    I have a trigger looks simmar like this. GET_NAME is a function and works good. What's wrong? create or replace trigger trg_update_USER after update on USER for each row begin if UPDATING then UPDATE USER set NAME = GET_NAME(:new.EMP_NO,:new.DEPT,'2') where EMP_NO =...
  11. kanghao

    where are oracle ddl(create table, create index etc) stored?

    I don't have Toad etc. so I need to know where the ddls are stored. where are they? Thanks.
  12. kanghao

    change the default option of the smart tags.

    I was confused. I mean "paste options" not smart tags. Thanks.
  13. kanghao

    change the default option of the smart tags.

    I use Office 2003(Powerpoint). when I copy from the web pages, the ppt smart tag gives 3 options ; 1.keep original format 2.use design template 3.copy text only default is 2. I want 3 to be the default option. How can I change the setting in powerpoint or office-wide?
  14. kanghao

    re: xsi:schemaLocation and xsi:noNamespaceSchemaLocation

    what's the difference of the xsi:schemaLocation and xsi:noNamespaceSchemaLocation attributes? xsi:noNamespaceSchemaLocation is used for the physical location of schemas like xsi:noNamespaceSchemaLocation="http://.../my.xsd" or xsi:noNamespaceSchemaLocation="mylocal.xsd", right? what about...
  15. kanghao

    handling large text files...

    and what about large Strings?
  16. kanghao

    handling large text files...

    I have a large text file sized 1MB or over. I have to modify just the first or second line and the remaing remains as the same. I tried LineNumberReader and it works fine. (read each line and the modify first or the second line and append them to stringbuffer and toStringed it.) but I'm...
  17. kanghao

    catching comments in SAX

    my handler looks like --------------- public class RMSAXDefaultHandler extends DefaultHandler implements LexicalHandler { ... ... public void comment(char[] ch, int start, int length) throws SAXException { System.out.println("comment ==============="); String...
  18. kanghao

    determine whether the element have text or not in it

    In SAX, Is it possible to determine whether the element have the text or not in it in startElement()? I want the collapsed form of element like <EMPTY_ELEMENT/> when the element have no text in it. I have the form of <EMPTY_ELEMENT></EMPTY_ELEMENT>, because I put "<", element_name,">" in...
  19. kanghao

    filter out tag name in cdata sections or comments

    I have to modify attributes values in the xml document below to a string-added value. <DOC> <Drawing id="2"><![CDATA[<EMI id="1" height="95" width="95" file="utm00004.jpg">]]> <EMI id="2" height="95" width="95" file="utm00004.jpg">ads</EMI> </Drawing> <!-- bla... <EMI id="3" height="95"...

Part and Inventory Search

Back
Top