0
有沒有簡單的方法來從另一個用戶控件更新用戶控件?如何觸發用戶控件更新
我有一個輸入框和一個提交按鈕。用戶輸入代碼,命中並根據代碼將積分應用於其他用戶控制。點數將應用於數據庫中的分數,但不顯示在頁面顯示中,直到我刷新。有沒有簡單的方法來更新提交控件?謝謝。
----------背後提交按鈕--------------
protected void btn_Add_Coupon_Click(object sender, EventArgs e)
{
try
{
SqlDataSourceTEST.DataSourceMode = SqlDataSourceMode.DataReader;
IDataReader Reader = (IDataReader)SqlDataSourceTEST.Select(DataSourceSelectArguments.Empty);
if (Reader.Read())
{
int iPoints = 0;
iPoints = (int)Reader["Points"];
if (iPoints > 0)
{
Profile.TimesVisited = Profile.TimesVisited + iPoints;
lblcoup.Text = iPoints.ToString() + " have been added to your score!";
}
else
{
lblcoup.Text = "Coupon Code Not Valid";
}
}
Reader.Close();
Reader.Dispose();
}
catch (Exception ex)
{
}
}