or
protected
void
RadAjaxManager1_AjaxRequest(
object
sender, AjaxRequestEventArgs e)
{
//TODO: This needs extensive work still.
Logger.InfoFormat(
"Received an ajax request. Arguments are: {0}"
, e.Argument);
string
[] arguments = e.Argument.Split(
','
);
if
(arguments[0] ==
"Update Local Settings"
)
{
string
dockID = arguments[1];
Logger.InfoFormat(
"Dock ID: {0}"
, dockID);
CormantRadDock dock = Utilities.FindControlRecursive(Page, dockID)
as
CormantRadDock;
DefaultAjaxManager.AjaxSettings.AddAjaxSetting(tmrRefreshTaskTitle, spnMyCommitteeTask);
when writing this line my solution is compiled but cannot run - the page doesnt being drown.
if i remove this line, but give the radajaxmanager stay on page design, there is no error.
Does anybody know what is my problem?
thanks,
gila