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 SkipVought 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: dvknn
  • Order by date
  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
  16. dvknn

    how to get date in this format

    Thank You PMC. PHV, It doesn't matter.. As long as the month is the previous month always..Is there some other way other than the one indicated above by PMC? Thanks
  17. dvknn

    how to get date in this format

    Hi, From `date +%d"-"%b"-"%Y` , I get for ex: 06-AUG-2004. How can I get 06-JUL-2004 (I would like get always currentday-previuosmonth-currentyear) Thanks a bunch..
  18. dvknn

    how to grep this??

    In the string 1,"0999"4000,"gg0002ba39"117,"AE"50,"US"24,"20040711"0,"621"4128,"000000"4131,"000000"68, "USD"80-1,"US"99,"" I do not have any spaces..Does fgrep allow to grep from the full string?? So, could you please explain fgrep?
  19. dvknn

    how to grep this??

    Hi, I have lines in my log files like this. 1,"0999"4000,"gg0002ba39"117,"AE"50,"US"24,"20040711"0,"621"4128,"000000"4131,"000000"68, "USD"80-1,"US"99,"" I want to grep the '117,"AE"50,"US"' this part from the file. How can I do that?
  20. dvknn

    Convert Date

    Hi, How can I get a date in DD-MMM-YYYY format? for eg: 15-JUN-2004 - Thanks

Part and Inventory Search

Back
Top