Hello,
I am attempting to update AJAX Control Toolkit from v3 to v15. I have some legacy code that relies on ScriptObjectBuilder. More specifically, the code calls ScriptObjectBuilder.GetScriptReferences.
```
IEnumerable<ScriptReference> IScriptControl.GetScriptReferences()
{
foreach (ScriptReference modalReference in ScriptObjectBuilder.GetScriptReferences(typeof(ModalPopupExtender)))
yield return modalReference;
// Yields other script references
}
```
How should I update this code to work with v15?
Thank you
Comments: I just learned that there is a forum for AjaxControlToolkit. I've posted the exact same question at http://forums.asp.net/p/2064615/5955424.aspx?p=True&t=635758658664778529.
I am attempting to update AJAX Control Toolkit from v3 to v15. I have some legacy code that relies on ScriptObjectBuilder. More specifically, the code calls ScriptObjectBuilder.GetScriptReferences.
```
IEnumerable<ScriptReference> IScriptControl.GetScriptReferences()
{
foreach (ScriptReference modalReference in ScriptObjectBuilder.GetScriptReferences(typeof(ModalPopupExtender)))
yield return modalReference;
// Yields other script references
}
```
How should I update this code to work with v15?
Thank you
Comments: I just learned that there is a forum for AjaxControlToolkit. I've posted the exact same question at http://forums.asp.net/p/2064615/5955424.aspx?p=True&t=635758658664778529.