Hello All
I upgraded 5 sites last Friday evening to 5.6.1 and all went well
On Monday morning, one of my customers phoned to say that most of the custom modules were not working correctly.
The problem in all cases was where I have a command button to call another control.
The code in question is as follows
protected void cbViewCourses_Click(object sender, EventArgs e)
{
GridDataItem gridDataItem = (GridDataItem)RadGrid1.SelectedItems[0];
String key = Common.Utilities.UrlUtils.EncryptParameter(gridDataItem["Id"].Text);
string[] additionalParams = new string[2];
Response.Redirect(EditUrl("OrganisationId", key, "ViewOrganisationCourses"), true);
}
If I turn off "Partial Rendering" in the module definition, it works perfect.
Does anyone know what I should do ?
a) do I need to change my code - if so to what?
b) will I just update the table and turn off all partial rendering for all my modules? If so, are they negative implications?
I repeat, all works fine here with partial rendering turned off, but I really do not know what the issue is?
thanks
Mark