Thanks tha_watcha
This is what I did taking the advice from tha_watcha:
I commented out this lines of code from Forum.cs in the Classes Folder from Yaf inside the OnInit function
// handle script manager first...
if (ScriptManager.GetCurrent(this.Page) != null)
{
return;
}
//// add a script manager since one doesn't exist...
var yafScriptManager = new ScriptManager { ID = "YafScriptManager", EnablePartialRendering = true };
this.Controls.Add(yafScriptManager);
This avoids Yaf adding a new scriptmanager to the page (as I´m sure I´m adding one in my master page).
Recompiled the whole project.
Copied all the files in Yaf bin directory into my solution bin directory.
And now it seems to work perfectly... I´ll inform if I find any problem.
Edited by user
10 years ago
|
Reason: Not specified