AJAX ScriptManager in UserControl

前提是你 提交于 2019-12-30 07:06:07

问题


I have a UserControl that contains an UpdatePanel which wraps some other controls. The UserControl will be used on some pages that already have a ScriptManager and other pages that do not have a ScriptManager. I'd like the UserControl to automatically bring its own ScriptManager if one does not exist.

I have tried ScriptManager.GetCurrent and if it returns null i create my own ScriptManager and insert it into the Form but I can't find a place early enough in the UserControl's lifecycle to run this code. I keep getting the error "The control with ID 'uPnlContentList' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it." every time i try loading the page. The places i've tried running my code are OnInit, CreateChildControls and PageLoad and they never get called because it dies before reaching them.

Where should I put this check?


回答1:


I hate to come at this in another direction, but are you using a master page? And if so, have you considered placing a single ScriptManager on it and being done with it?




回答2:


put a ScriptManager in your MasterPage that all your ASPX files reference. Then anywhere else in the site that you need to work with the ScriptManager use a ScriptManagerProxy that will get the ScriptManager from the master page and let you work with it in the user control and in the code behind.

Now calling ScriptManager.GetCurrent(Page) will give you a reference to a script manager.

<asp:ScriptManagerProxy>
  <Scripts>
    <asp:ScriptReference Path="~/Scripts/myscript.js" />
  <Scripts>
</asp:ScriptManagerProxy>

Here's a link:

MSDN Info




回答3:


I think the Init event should work. Use the technique you described (i.e. checking that ScriptManager.GetCurrent returns null before adding) but when you add the ScriptManager, make sure you add it as the first control inside the form.

I haven't tested this but I think it will work.




回答4:


What worked for me was including this line after < form >

 <asp:ScriptManager ID="scriptManager" runat="server"/>

That got me around the "...requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it."




回答5:


I have made 2 things that works.

On the UserControl make this Sub:

Public Sub SetFocus()
    txtBox.Focus()
End Sub

On the caling site, call this before your ScriptManagerCall

userControl.SetFocus()

If you have AutoPostback on you UserControl you also have to set the focus in TextChanged event.

Protected Sub txtBox_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtBox.TextChanged
    txtBox.Focus()
    ......
End Sub

Hope this works.



来源:https://stackoverflow.com/questions/650927/ajax-scriptmanager-in-usercontrol

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!