如何使用线程在按钮单击事件上调用相同的方法

如何使用线程在按钮单击事件上调用相同的方法

本文介绍了如何使用线程在按钮单击事件上调用相同的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

i有一个Web应用程序,其中包含带有3个按钮的web表单。所有3个按钮的按钮点击事件生成PDF文件的相同方法被调用一个参数。我想要使我的方法(PDFGenerating)是线程安全的,所以如果用户同时点击所有三个按钮数据不能得到混合。

i希望方法应该逐个调用。

即第一个pdf文件将为btn1生成一次完成btn2 thn for btn3的文件。我希望同步使用相同的方法使用线程。



请帮助我。



代码示例: -

Hi All,
i have an one web application which consist web form with 3 button.onbutton click event for all 3 button same method for generating PDF file is getting called with one parameter.i want to make my method(PDFGenerating) is thread safe so if useer click all three button at same time data can not be get mixup.
i want methos should be getting call one by one.
i.e first pdf file will be generting for btn1 once completed file for btn2 thn for btn3. i want Synchronization for same method using thread.

Please help me on this.

code example:-

protected void bthSubmit1_Click(object sender, EventArgs e)
      {
                   PDFGenerating("2");
      }
      protected void bthSubmit2_Click(object sender, EventArgs e)
      {
                 PDFGenerating("3");
      }
      protected void bthSubmit3_Click(object sender, EventArgs e)
      {
                  PDFGenerating("4");
      }

protected void PDFGenerating(string id)
  {
//Code for PDF file 
}



请帮帮我。



提前致谢


Please help me on this.

Thanks in advance

推荐答案


这篇关于如何使用线程在按钮单击事件上调用相同的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 04:19