Parameters
- url
- The target location.
- endResponse
- Indicates whether execution of the current page should terminate.
bool continue;
// some code
if (continue)
{
Response.Redirect("page.aspx", false);
}
else
{
Response.End();
}
Because of UI virtualization in RadGridView, cell elements are created only for currently visible cells. To prevent applying the formatting to other columns' cell elements all customization should be reset for the rest of the cell elements. Example: Change Forecolor in CellFormating Events |