Confirm Before Sending Email

I need to convert a standard mailto link so that when the link is clicked, a pop-up dialog box (Cancel/OK) appears, that then executes the mailto link when OK is clicked.
To clarify: I have:
      John Q. Doe <a href="mailto:[email protected]</a>
And instead, when the link is clicked, I want to have a pop-up dialog box that says something like:
Are you sure you want to open an email window
     Cancel          OK
If OK is clicked, then the href="mailto:JQDoe@mymail,com" is run (nothing happens if cancel is clicked)
I realize that this only works when there is an email client running, that's OK.
I tried this with Javascript, and while there is no problem getting the pop-up window, nothing I tried opened an email window.
I tried with Spry also, but wasn't sure how to get the code to run in a temporary pop-up.
Thanks in advance!
p.s. Dreamweaver CS4
Message was edited by: dancingjewel

There you go!
I gave you a helpful for this, although the first answer should really get the helpful and the second one the solved, but c'est la vie.
Thanks so much, and your right - it is time to switch to form based mail (for many reasons). Part of this is I am taking over editing of pre-existing sites, and I need to justify the unasked for changes.
Perhaps I will use the email phishing argument.

Similar Messages

  • 'Confirm before sending SMS' when enter key is pre...

    Many will agree with me,
    While creating SMS we press 'Enter key' for next line, and then we realise that incomplete SMS has been sent and we got charged for it.
    There should be checkbox in Skype's Settings/Preferences for Messegeing:
    [√] "Confirm before sending SMS"
    Please push this feature if you agree with me.
    Thanks,
    Nitin

    The text of the submit button is transmitted to tell you which submit button was clicked, so naturally it doesn't send it if you don't click that button.
    The usual trick is to create an field like <INPUT TYPE="hidden" id="actionfield" name="action" value="enter">
    When an element that causes a submit, like clicking a button, happens then Javascript sets the value of the field to indicate the entry method. e.g.
    onClick="document.getElementById('actionField').value='ok'; return true"
    Obviously if the submit occurs due to hitting ENTER the action parameter will be "enter".
    Actually few forms use submit buttons these days because they look a bit clunky, most use images for buttons and power them with JavaScript.

  • Send Button - Confirm before sending?

    I keep accidentally sending texts because while I am typing I will hit the "send" button (maybe when hitting O or P). Is there a texting app that has the send button somewhere else? Is there way to have to phone confirm before sending?

    Greetings,
    Be more careful - I have huge hands and fingers, a size 15 ring, and I never have had a problem with that.
    The only thing I can think of is that you may be in too big a hurry, slow down a little, they aren't likely to move the "Send" button for SMS.
    Cheers,
    M.

  • Reviewing attached PDF before sending email

    Hello,
    I use the email option within Acrobat Reader to generate an email in Outlook Express with the active PDF-file as an attachment.
    Then I fill out the recipients etc. and write the text of the email.
    At this point, just before sending, I would like to review the PDF-file, just to make sure everything is "in sync" with the content of my email message, but this is not possible.
    Nothing happens when I double-click the attachment and I can't go back to Acrobat Reader to scroll through the PDF-file there - Acrobat Reader is "locked" as long as the email window is open.
    When I do not use the email function within Acrobat Reader, but attach the PDF-file from within Outlook Express itself, I can open the PDF-file and view it without problems prior to sending.
    Is there any way of viewing the attached PDF-file before sending the email when using the email button from within Acrobat Reader?
    Thanks!

    Hello,
    I use the email option within Acrobat Reader to generate an email in Outlook Express with the active PDF-file as an attachment.
    Then I fill out the recipients etc. and write the text of the email.
    At this point, just before sending, I would like to review the PDF-file, just to make sure everything is "in sync" with the content of my email message, but this is not possible.
    Nothing happens when I double-click the attachment and I can't go back to Acrobat Reader to scroll through the PDF-file there - Acrobat Reader is "locked" as long as the email window is open.
    When I do not use the email function within Acrobat Reader, but attach the PDF-file from within Outlook Express itself, I can open the PDF-file and view it without problems prior to sending.
    Is there any way of viewing the attached PDF-file before sending the email when using the email button from within Acrobat Reader?
    Thanks!

  • OWA Email Prompt Before Sending Email With Spelling Errors

    Looking for a way to configure OWA so that it does not send, or at least prompts you before sending, an email that has spelling errors? 
    Thanks

    Hi FaeB,
    Thank you for your question.
    Exchange 2013 OWA didn’t  just receive email without any development.
    When we send email with spelling error, OWA will display the red line under incorrect word, as the following snapshot:
    In snapshot, I make the word of “email” and “error” incorrect.  If we didn’t modify it, OWA will not give another reminder when we send emails.
    If there are any questions regarding this issue, please be free to let me know. 
    Best Regard,
    Jim

  • Cannot Send Email Notification Using Stored Procedure.

    Hi Friends,
    I tried to execute this job scheduler...
    begin
    dbms_scheduler.create_job(
    job_name => 'ILMS_JOB_SCHEDULE'
    ,job_type => 'PLSQL_BLOCK'
    ,job_action => 'begin ilms.check_reminder(); end; '
    ,start_date => SYSTIMESTAMP
    ,repeat_interval => 'FREQ=DAILY'
    ,enabled => TRUE
         ,end_date => NULL
    ,comments => 'Ilms job schedule for notification.');
    end;
    However, since the effect is too long I rescheduled the frequency to be every one minute in this set attribute...
    BEGIN
    DBMS_SCHEDULER.SET_ATTRIBUTE(
              name => 'ILMS_JOB_SCHEDULE'
              ,attribute => 'repeat_interval'
              ,value => 'FREQ=MINUTELY;INTERVAL=1'
    DBMS_SCHEDULER.DISABLE('ILMS_JOB_SCHEDULE');
    DBMS_SCHEDULER.ENABLE('ILMS_JOB_SCHEDULE');
    END;
    Check Reminder is the stored procedure invoked by job scheduler to check values in database columns before sending email notification to the respective recipients' email address and also the format of the email notification to be sent to the recipients...
    CREATE OR REPLACE PROCEDURE check_reminder AS
    NO number;
    CURSOR emp_cur is
    select * from pergerakan_ks where TASK_FLAG=7 and TASK_STATUS='InProgress';
    emp_rec emp_cur%rowtype;
    email_to varchar2(200);
    default_email varchar2(200);
    mesg varchar2(4000);
    no_kes varchar2(100);
    subj varchar2(4000);
    kpi number;
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    BEGIN
    default_email:='@abc.com.my';
    FOR emp_rec in emp_cur
    LOOP
    if emp_rec.PKS_TKH_TERIMA is null then
    dbms_output.put_line('count day ' || round(sysdate - to_date(emp_rec.pks_tkh_hantar)) || crlf || crlf);
    if round(sysdate - to_date(emp_rec.pks_tkh_hantar)) >3 then
    email_to:=emp_rec.pks_penghantar_id||default_email;
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    dbms_output.put_line('update old pergerakan pks_id : '||emp_rec.pks_id);
    update pergerakan_ks set task_status='Done' where pks_id=emp_rec.pks_id;
    dbms_output.put_line('insert new pergerakan ks : ');
    insert into pergerakan_ks(pks_id,pks_ks_id,pks_km_id,pks_penghantar_id,pks_tkh_hantar,
    pks_penerima_id,pks_tkh_terima,task_name,task_owner,task_status,task_flag,fb_id)
    values(pks_id_seq.nextval,emp_rec.pks_ks_id,emp_rec.pks_km_id,
    emp_rec.pks_penghantar_id,sysdate,
    null,
    null,emp_rec.task_name,
    emp_rec.pks_penghantar_id,
    'InProgress',6,emp_rec.fb_id);
    commit;
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    end if;
    if emp_rec.PKS_TKH_TERIMA is not null then
    dbms_output.put_line('emp_rec.pks_km_id ' || emp_rec.pks_km_id || crlf);
    select c.KM_KPI into kpi from keluar_masuk_ks c where c.KM_ID = emp_rec.pks_km_id;
    no := round(sysdate - to_date(emp_rec.pks_tkh_terima))-kpi;
    dbms_output.put_line('count day - kpi' || no || crlf);
    dbms_output.put_line('kpi ' || kpi || crlf);
    if no = 1 then
    email_to:=emp_rec.pks_penghantar_id||default_email;
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    email_to:=emp_rec.task_owner||default_email;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    e_mail_message(email_to,email_to,subj,mesg);
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    if no = 3 then
    select b.KS_BIL_NO into no_kes from kertas_siasatan b where b.KS_ID = emp_rec.pks_ks_id;
    email_to:=emp_rec.task_owner||default_email;
    subj:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    mesg:='Reminder untuk Membuat Tindakan Bagi No Kes '||no_kes;
    dbms_output.put_line('Sending email to ' || email_to || ' subject: ' || subj);
    e_mail_message(email_to,email_to,subj,mesg);
    end if;
    end if;
    END LOOP;
    END;
    E_mail_message is the stored procedure invoked by the check_reminder to tell scheduler information of the connection and the email address of the recipients...
    CREATE OR REPLACE procedure
    e_mail_message
    from_name in varchar2,
    to_name in varchar2,
    subject in varchar2,
    message in varchar2
    is
    l_mailhost VARCHAR2(64);
    l_from VARCHAR2(64);
    l_to VARCHAR2(64);
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    l_mail_conn UTL_SMTP.connection;
    mesg VARCHAR2( 4000 );
    BEGIN
    select a.SERVER into l_mailhost from email_setting a where a.SERVER is not null;
    select a.USERNAME into l_from from email_setting a where a.SERVER is not null;
    --UTL_SMTP.open_data(l_mail_conn);
    mesg:= 'Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || crlf ||
    'From: <'||l_from||'>' || crlf ||
    'Subject: ' ||subject|| crlf ||
    'To: '||to_name || crlf || '' || crlf ;
    mesg:=mesg||message;
    l_mail_conn := UTL_SMTP.open_connection(l_mailhost, 25);
    UTL_SMTP.helo(l_mail_conn, l_mailhost);
    UTL_SMTP.mail(l_mail_conn, l_from);
    UTL_SMTP.rcpt(l_mail_conn, to_name);
    UTL_SMTP.data(l_mail_conn, mesg);
    UTL_SMTP.quit(l_mail_conn);
    END;
    I tried to execute to execute the e_mail_message procedure but received this error. Also, no notification sent to the email address...
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 241
    ORA-06512: at "ILMS.E_MAIL_MESSAGE", line 33
    ORA-06512: at line 13
    Please help so that I can receive the email notification into my email...thanks in advance for your time..

    user13281540 wrote:
    ORA-29279: SMTP permanent error: 501 5.1.3 Invalid address
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 241
    ORA-06512: at "ILMS.E_MAIL_MESSAGE", line 33
    ORA-06512: at line 13This is not an Oracle error - this is the mail server saying "+hey, I don't like that e-mail address you are supplying, I'm not accepting it!+".
    If you look at RFC821 (Request For Comments memo 821 describes the SMTP specifications), you'll see that the sender and recipient needs to be supplied in the format +<[email protected]>+, e.g. +<[email protected]>+.
    I have found that not all SMTP servers are equal in this regard. Some may insist on the brackets around the address, some may not.
    You need to confirm the format of the addresses you use in the "+MAIL FROM+" and "+RCPT TO+" commands.. and ensure that these formats are accepted by your SMTP server - and if not, change your code to use an acceptable format.
    The easiest way to do this is using telnet - and interacting directly and manually with the server. SMTP is a clear text protocol and easy to use manually. Try it. It is the best way to test SMTP interaction and validate the approach and SMTP commands and arguments used by your code.

  • When I send an email with Mail, I often confuse the account which I'm using. The result is that I send a message with the wrong account! Is there a way to avoid this (for example a reminder before the email is sent)?

    When I send an email with Mail, I often confuse the account which I'm using. The result is that I send a message with the wrong account! Is there a way to avoid this (for example a reminder before the email is sent)?

    Hi, thanks for the answer, I did that already. Unfortunatly this doesn't help me at all, as I often forget to check the menu. For me composing the message is writing the text, the subject, the person to who is addressed and than press "send".
    I often forget to check the "from", and this is a problem because the software select itself one of the accounts.
    Isn't there a way at least to put as a default a blank field instead of one of the accounts? or an account which doesn't work so if I forget to specify the "from" I will be rnotofied that the message can't be sent.
    I guess this could be a rather common problem for many people!
    Thanks
    Sergio

  • My Iphone 4 sends emails before I am finished.. think its the space bar?

    My Iphone 4 sends emails before I am finished.. i think its the space bar? How do u fix?

    Hi Aza Din,
    To re-enable a disabled iPhone, follow this article:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Take care,
    - Ari

  • Check spelling before sending an email, strange words

    I have the default set to check spelling before sending an email, sometimes I get all kind of strange words that are not in my email show up as spelling errors. What do I need to change to correct this problem

    Any examples of the words?
    Are you replying to or forwarding messages created by users of Outlook or other Microsoft email products? Their messages are full of bloated Office-based non-standard coding that Thunderbird's spell checker struggles (and fails) to understand.
    Fundamentally, if you can't see the text that the spell checker is complaining about, it almost certainly doesn't matter.
    Next time you get a message that does this, go back to the original message, select it and use ctrl+u to see its source. You may be surprised at the sheer bulk of invisible and largely useless code in the message sent to you,
    Such as:
    <code>
    &lt;html xmlns:v=3D"urn:schemas-microsoft-com:vml" xmlns:o=3D"urn:schemas-micr=
    osoft-com:office:office" xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
    xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" xmlns=3D"http:=
    //www.w3.org/TR/REC-html40"&gt;
    &lt;head&gt;
    &lt;meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3DWindows-1=
    252"&gt;
    &lt;meta name=3D"Generator" content=3D"Microsoft Word 14 (filtered medium)"&gt;
    &lt;!--[if !mso]&gt;&lt;style&gt;v\:* {behavior:url(#default#VML);}
    o\:* {behavior:url(#default#VML);}
    w\:* {behavior:url(#default#VML);}
    .shape {behavior:url(#default#VML);}
    &lt;/style&gt;&lt;![endif]--&gt;&lt;style&gt;&lt;!--
    /* Font Definitions */
    @font-face
    {font-family:Calibri;
    panose-1:2 15 5 2 2 2 4 3 2 4;}
    @font-face
    {font-family:Tahoma;
    panose-1:2 11 6 4 3 5 4 4 2 4;}
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
    {margin:0cm;
    margin-bottom:.0001pt;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-fareast-language:EN-US;}
    a:link, span.MsoHyperlink
    {mso-style-priority:99;
    color:blue;
    text-decoration:underline;}
    a:visited, span.MsoHyperlinkFollowed
    {mso-style-priority:99;
    color:purple;
    text-decoration:underline;}
    p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
    {mso-style-priority:99;
    mso-style-link:"Balloon Text Char";
    margin:0cm;
    margin-bottom:.0001pt;
    font-size:8.0pt;
    font-family:"Tahoma","sans-serif";
    mso-fareast-language:EN-US;}
    span.EmailStyle17
    {mso-style-type:personal-compose;
    font-family:"Calibri","sans-serif";
    color:windowtext;}
    span.BalloonTextChar
    {mso-style-name:"Balloon Text Char";
    mso-style-priority:99;
    mso-style-link:"Balloon Text";
    font-family:"Tahoma","sans-serif";}
    .MsoChpDefault
    {mso-style-type:export-only;
    font-family:"Calibri","sans-serif";
    mso-fareast-language:EN-US;}
    @page WordSection1
    {size:612.0pt 792.0pt;
    margin:72.0pt 72.0pt 72.0pt 72.0pt;}
    div.WordSection1
    {page:WordSection1;}
    --&gt;&lt;/style&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
    &lt;o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" /&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
    &lt;o:shapelayout v:ext=3D"edit"&gt;
    &lt;o:idmap v:ext=3D"edit" data=3D"1" /&gt;
    &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
    &gt;/head&gt;
    </code>
    …and that's just the header.

  • Cannot PREVIEW my eMail before sending; nor can I use BOLD, ITALIC etc.

    In the past 3 days: Cannot PREVIEW my eMail before sending; nor can I use BOLD, ITALIC etc.
    I can add this: and I think you see the smiley-- but I cannot use the "B" bold button to make a selection of text bold; nor any other features for emphasis-- and cannot even get the Preview window to open.
    Is this a technical problem or me?
    Thanks,
    Steve
    Sunday 20 January 2008

    This is a known problem, the Hosts are working to fix it. See this thread: http://discussions.apple.com/thread.jspa?threadID=1344112&tstart=0

  • How long does it usually take to send a confirmation to my email to create a new apple ID?

    how long does it usually take to send a confirmation to my email to create a new apple ID?
    what should I do to cancel the registration, or fix it?

    Usually seconds.
    You can contact iTunes or go  here: http://support.apple.com/kb/HE40. You should be able to change the ID and then reverify it there.

  • TS3899 I can receive, but not send emails on iPad. All settings checked several times and with internet provider. imap settings confirmed as ok. Account deleted and set up under guidance of service provider several times - problem not solved - help!!

    I can receive, but not send emails on iPad. All settings checked several times and with internet provider. imap settings confirmed as ok. Account deleted and set up under guidance of service provider several times - problem not solved - help!!

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email  -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • I cannot forward or send emails from my ipod this has just recently happened. Used to work before ok

    i cannot forward or send emails from my ipod this has just recently happened. Used to work before ok

    Do you have more than one mail account on the iPod?  For out-going mail, the Mail app will first use the outgoing server associated with the account and then go to the out-goings servers for other accounts.  To check go to Settings>Mail..>Outgoing Mail Server SMTP.  Some providers do not allow mail to be send for other than the from that providers mail address.  (e.h.,can' send AOL mail via a Hotmail outgoing server).
    To me is sounds ilke the APL outgoing server is not on line. Also try resetting the iPod, nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • I change my email for my itunes account but now they ask me to confirm the new email address but i can't because they haven't send me the email to confirm. what can i do?

    what can i do?? how can they send me the email to confirm tthe new email if i cant access to my acount?

    Have you already checked your spam folder? (Sometimes the conformation email gets clarified as spam.) If you did not receive anything then just sign in to your Apple ID at http://appleid.apple.com and you'll find that on that page, it's said to verify your email account, which is what it's attached to your Apple ID. Click the verify button and then check your inbox of your primary email address.

  • How do I down size my photos on the ipad before sending by email?

    When I send pictures via email from my 3rd generation ipad they are "oversized" or too large.
    How do I down size before sending?

    In Safari, (the web browser), there are specific arrows to go back and forward through website pages.
    In other Apps, it will depend on how the App is built.
    As to Yahoo Mai it depends on where you are viewing the email.  If you are using the Mail App, then you don't log out.     The Mail accounts in the Mail App are always there.
    If you are using the Yahoo App, You can Tap on the folder at the top, then on your account/name, and then on Sign Out.

Maybe you are looking for

  • Win 8.1 backup error 0x807800c5

    I get this error when trying to backup a system image to a NETGEAR RND4000 NV+. Searching through the various forums I have found a lot of information which points to the fact that Windows 8.1 broke the system image backup by not allowing backup to a

  • AP Check not printing all of address on Vendor Master

    Hello SAP Guru's, I have an issue where when we execute F110 for check run, it is not printing the complete address as we have under Vendor Master.  For example, the check print is not showing the following from Vendor Master record: Building Code St

  • Concepts in web dynpro abap

    concepts in web dynpro abap? how different is it from abap

  • Macbook pro 2013 suddenly turn off and wheh charged its define only grren light and dont turn on.

    Hi Friends.. I have mac book pro 2013. Today when I started its got suddenly turn off and also not turn on. The mac does not charged also not turn on. charger define only green light. I reset SMC but its not work. Please If any one have Idea.

  • Commons fileupload to delete a file

    Has anyone used the jakarta commons fileupload package to delete a file? Is it possible? There is a delete() method in the package, but I can't get it to work. Does anyone have any ideas?