///
/// Overrides the default behaviour of LoadData.
///
public override void LoadData()
{
// Call base.LoadData()
base.LoadData();
if (this.DataSource == null)
{
// If no records found then, redirect to the page of your choice
this.Page.Response.Redirect("../OtherPages/SomeOtherPage.aspx");
}
}
|