calling two functions on asp.net button onclick

前端 未结 3 1112
栀梦
栀梦 2021-01-13 16:53

I want to call two functions on button click I tried like this

 

        
3条回答
  •  感情败类
    2021-01-13 17:11

    you can use the method inside method to do this. First do this

    
    

    then in code behind

    protected void Unnamed1_Click(object sender, EventArgs e)
    {
        //call another function here
    }
    

提交回复
热议问题