[code=cpp]
protected void btnTest_Click(o bject sender, EventArgs e)
{
btnTest.Enabled = false;
//here is some code - that code take 15seconds
//and in the end i put the button n enabled
btnTest.Enabled = true;
}[/code]
i don´t know why that happen...
when i click again the event accumulate!!!!
i don´t know...is there some property that need to be set?
thanks
protected void btnTest_Click(o bject sender, EventArgs e)
{
btnTest.Enabled = false;
//here is some code - that code take 15seconds
//and in the end i put the button n enabled
btnTest.Enabled = true;
}[/code]
i don´t know why that happen...
when i click again the event accumulate!!!!
i don´t know...is there some property that need to be set?
thanks
Comment