JavaScript and VBScript

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • JWM

    JavaScript and VBScript

    Hello: Here is what I am trying to do......

    The user clicks on the delete icon, and gets a JavaScript client-side popup
    to confirm that he wants to delete. I am passing this client-side function
    a contactID.
    Then, I want to send the result of this confirm (true|false) to a
    server-side VBScript function, along with the contactID.
    The VBScript function will then perform a delete in the database for the
    specified contactID.

    I have seen many examples about sending stuff back and forth between
    JavaScript and VBScript, between server and client, but all the examples I
    see are just popping up generic alerts and such. I need to execute some JS
    on the client side, return a value, and send it to a VBScript function on
    the server side.

    Someone please help me.

    Joe
    jwm68@sbcglobal .net




  • Randy Webb

    #2
    Re: JavaScript and VBScript

    JWM wrote:[color=blue]
    > Hello: Here is what I am trying to do......
    >
    > The user clicks on the delete icon, and gets a JavaScript client-side popup
    > to confirm that he wants to delete. I am passing this client-side function
    > a contactID.
    > Then, I want to send the result of this confirm (true|false) to a
    > server-side VBScript function, along with the contactID.
    > The VBScript function will then perform a delete in the database for the
    > specified contactID.[/color]

    Why do you want to call the server side script if the user doesn't want
    to delete? Seems the only time you want to send the data is when they
    want to delete.

    [color=blue]
    > I have seen many examples about sending stuff back and forth between
    > JavaScript and VBScript, between server and client, but all the examples I
    > see are just popping up generic alerts and such. I need to execute some JS
    > on the client side, return a value, and send it to a VBScript function on
    > the server side.
    >
    > Someone please help me.[/color]

    The solution will depend on the answer to one more question:

    What do you want to happen *after* the user says "Yes, I want to
    delete". Do you want the page to refresh? I would assume so. <form
    onsubnmit="retu rn confirm('Are you sure you want to delete that record?"
    action="myFile. asp"> And have the button be a submit button, and let it
    submit the form. myFile.asp would pick up the form values, and then act
    on it.

    If you don't want the page to refresh/update, you could simply change
    the source of an image and have the myFile.asp called on the server, as
    the img src.


    --
    Randy
    Chance Favors The Prepared Mind
    comp.lang.javas cript FAQ - http://jibbering.com/faq/

    Comment

    • Randy Webb

      #3
      Re: JavaScript and VBScript

      Randy Webb wrote:
      [color=blue]
      > What do you want to happen *after* the user says "Yes, I want to
      > delete". Do you want the page to refresh? I would assume so. <form
      > onsubnmit="retu rn confirm('Are you sure you want to delete that record?"
      > action="myFile. asp">[/color]

      That should be:

      onsubmit="retur n confirm('Are you sure you want to delete that record?')"




      --
      Randy
      Chance Favors The Prepared Mind
      comp.lang.javas cript FAQ - http://jibbering.com/faq/

      Comment

      • TedJM

        #4
        Re: JavaScript and VBScript

        Randy Webb <hikksnotathome @aol.com> wrote in message news:<s-WdnbgAsL7O8y_dR Vn-uw@comcast.com> ...[color=blue]
        > JWM wrote:[color=green]
        > > Hello: Here is what I am trying to do......
        > >
        > > The user clicks on the delete icon, and gets a JavaScript client-side popup
        > > to confirm that he wants to delete. I am passing this client-side function
        > > a contactID.
        > > Then, I want to send the result of this confirm (true|false) to a
        > > server-side VBScript function, along with the contactID.
        > > The VBScript function will then perform a delete in the database for the
        > > specified contactID.[/color]
        >
        > Why do you want to call the server side script if the user doesn't want
        > to delete? Seems the only time you want to send the data is when they
        > want to delete.
        >
        >[color=green]
        > > I have seen many examples about sending stuff back and forth between
        > > JavaScript and VBScript, between server and client, but all the examples I
        > > see are just popping up generic alerts and such. I need to execute some JS
        > > on the client side, return a value, and send it to a VBScript function on
        > > the server side.
        > >
        > > Someone please help me.[/color]
        >
        > The solution will depend on the answer to one more question:
        >
        > What do you want to happen *after* the user says "Yes, I want to
        > delete". Do you want the page to refresh? I would assume so. <form
        > onsubnmit="retu rn confirm('Are you sure you want to delete that record?"
        > action="myFile. asp"> And have the button be a submit button, and let it
        > submit the form. myFile.asp would pick up the form values, and then act
        > on it.
        >
        > If you don't want the page to refresh/update, you could simply change
        > the source of an image and have the myFile.asp called on the server, as
        > the img src.[/color]

        what do you know about those two? stop pretending you know something.
        useless reply.

        Comment

        Working...