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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dvknn

  1. dvknn

    Show a row in radio button onclick

    Hi, I have 2 rows. In the first row, I have three radio buttons hs2, hs4, hs6. In the second row, I have 2 textboxes with labels HS2 and Description By default I have hs2 checked. I show HS2 and Description row. When I click hs4, I want the 'HS2' label to change to HS4 and when I click HS6...
  2. dvknn

    Hide the frame on page load

    I do not have any 'iframes'. Based on the code below, Is it OK to use them if I did not use them while defining my FRAMESET? Here's the code that I have Form.html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta...
  3. dvknn

    Hide the frame on page load

    Hi, I have a HTML page which contains a 'table' and I have a 'Add' button which then creates a 'Frame' under the table. I would like to 'hide' the frame upon loading the form. Click 'Add', the frame would be visible and when I click another button, I would like the frame to 'hide' again. How...
  4. dvknn

    onClick create a frame in the lower half of the page

    I am accessing the database using JSPs. I am curently reading about FRAMES. Could you show me a simple example (like have a HTML page with a table 2 columns and a row, and have a button 'Add' and show the frame with with these two 'th' fields that you have? Also, about 'Edit'. (Select a row in...
  5. dvknn

    onClick create a frame in the lower half of the page

    What does the frame contain? And why are you calling a 'cgi' script?
  6. dvknn

    onClick create a frame in the lower half of the page

    Sorry, I did not metion. I cannot 'Edit either. Also, when I click 'Add' I would like to create the 'textboxes' or 'combo boxes' in a 'separate frame'. The code above is generating a <tr><td> <input ....></td></tr> structure. Whereas I would like to see the controls popping up in a new frame...
  7. dvknn

    onClick create a frame in the lower half of the page

    Hi, I am a backend' java developer and getting to do some 'front-end GUI coding'. I can some simple stuff, but I need help with this. I have a page that has 'Add', 'Edit', 'Delete', 'Save', 'Cancel' and 'Exit' buttons on top of the page and a HTML table. The table has 7 columns and rows could...
  8. dvknn

    write data froma HTML form into a file and email the file

    Thanks Drew. To ZimZangZoom's question: I would like to send the file as an attachment. Could you that part too... - Thanks
  9. dvknn

    write data froma HTML form into a file and email the file

    Hi guys, I am totally new into PERL. I am C#/J2EE developer. I need your help. I have a HTML form. When I hit submit button, I would like to invoke a PERL script, create a file and write the name/value pair (pipe delimited), close the file and then email the file. Due to the restriction on...
  10. dvknn

    parsing a file in unix

    Thanks Mike. When I run cat filename | awk '{print $1,$8,$14,","$15,$17,$18,$19}' > filename.out 2004.07.26 18:52:25 [ExecuteThread: '3' for queue: 'default'] awls3.sac.fedex.com [5] weblogic PASSPORTMESSAGE.PARSE Parsing message: 0,"627"1,"00013328"4000,"g00g038f26"4111,"scientific...
  11. dvknn

    parsing a file in unix

    Hi, I have file which has lines like this: 2004.07.26 17:58:41 [ExecuteThread: '7' for queue: 'default'] awls3.sac.fedex.com [5] weblogic PASSPORTMESSAGE.PARSE Parsing message: 0,"627"1,"00001786"4000,"ggg00h0cad"4111,"leaflet"4145,"2"4123,"1"4124,"25"99,"" 2004.07.26 17:59:04...
  12. dvknn

    problem in uploading files

    Here is the code just for your information the application and folder to which I want to upload the files are on same machine private void btnUpload_Click(object sender, System.EventArgs e) { HttpPostedFile file = fileUploader.PostedFile; string finalPath = null; string serverPath =...
  13. dvknn

    problem in uploading files

    I am trying to upload files to the server in asp.net. I made sure that the folder to which I am uploading has aspnet read/write permissions but when I upload I get this error Could not find a part of the path c:\web\folder1\folder2\sample.JPG Can any one guide me on this error Your help is...
  14. dvknn

    Removing OLEHeader information

    Hi, I have a Access table which stores images (datatype oleObject). I have imported that table into SQLServer (the datatype of the field is IMAGE) and I am trying to read the the table using C#. I have successfully read the data and have written the images (each image is a file) into a file...
  15. dvknn

    how to get date in this format

    Huh!!!! I thought DAY=`date "+%d"` would take care of the day..Would it not?? Am I missing something? Thanks

Part and Inventory Search

Back
Top