how to call java script function in vb.net ?

Last post 04-21-2008 8:21 AM by basimalvi. 2 replies.

Sort Posts:

  • how to call java script function in vb.net ?

    04-18-2008, 7:29 AM
    • Member
      3 point Member
    • basimalvi
    • Member since 12-12-2007, 7:58 AM
    • Posts 24

    I have working with grid view and get records from database if the records exceding 1000 then I need to display confirm dialog box through javascript ? if click ok then it will display the records in gridview

    and if click cancel then it will create a message into label .

     

    want to know where to call java script function on the button that will display this javascript dialog.

    Basim
  • Re: how to call java script function in vb.net ?

    04-19-2008, 7:11 AM

    Hi,

    try this...

    //Code to get the datasource dataset ds

    if(ds.Tables[0].Rows.count > 0)

    {

        Page.ClientScript.RegisterStratUpScript(this.GetType(),"showal","ShowGridOrLabel();",true);

    }

     

    and you Js should be...

    function ShowGridOrLabel()

    {

        if(confirm("Are you sure you want ot show grid") == true)

       {

               document.getElementById('Gridview1').style.dispaly='block';

              document.getElementById('label1').style.dispaly='none';

       }

    else

        {

               document.getElementById('Gridview1').style.dispaly='none';

               document.getElementById('lable1').style.dispaly='block';

          }

    }

    Vasanthakumar
    Software Engineer.
  • Re: how to call java script function in vb.net ?

    04-21-2008, 8:21 AM
    Answer
    • Member
      3 point Member
    • basimalvi
    • Member since 12-12-2007, 7:58 AM
    • Posts 24

    I want to know about that

     

    I need to check some boolean value either "true" or "false" from this statement

        Page.ClientScript.RegisterStratUpScript(this.GetType(),"showal","ShowGridOrLabel();",true);

    and then on this boolean value I will check the condition.and apply different code. 

     

     

     

    Basim
Page 1 of 1 (3 items)