我想在点击按钮时显示加载图片。完成我的一些计算后,让这张照片看不见。没有AJAX而不使用[WebMethod]怎么做?我知道一些技巧如何使用AJAX或PageLoad,但我很有趣,如何在不同的线程中做到这一点,是否可能?
例如我的代码:
protected void btnDelete_Click(object sender, EventArgs e)
{
imgLoading.Visible = true;
lblCount.Visible = false;
//doing some work
bool isDone = TProfile.Delete(userId, someData);
if (isDone)
{
imgLoading.Visible = false;
lblCount.Visible = true;
}
BindList(true);
}