0

私はasp:LinkButton自分のページで使用していて、クリックするとファイルをダウンロードしますが、問題は、ダウンロードリンクボタンをクリックした後、ページ上の他のボタンをクリックすると、ダウンロードアクションが繰り返されることです。なぜこれが起こっているのかについて誰かが光を当てることができますか?

これが私のリンクされたボタンコードです

  protected void lnkBtn_Click(object sender, EventArgs e)
  {
        //Download code
  }
4

1 に答える 1

0

This can happens if you have an UpdatePanel somewhere in your page. UpdatePanel modify and remember the viewstate because is wait for replay from this click.

What you do is that you do not return what UpdatePanels waits, because you download a file as you say. So on the next click the UpdatePanel re-send the click because did not have get replay in the first place.

To solve that is better to not download the files with the post back, but with a handler and a link - here is an example: What is the best way to download file from server

于 2013-01-02T20:37:57.743 に答える