开发者

Changing ScriptManager's attribute globally

In each projects we have several pages which have the following tag

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

Now we would like to change those to (about 80% of Pages)

<asp:ScriptManager ID="ScriptManager1" EnableScriptGlobalization="true" EnableScriptLocalization="true"  run开发者_如何学Goat="server">
</asp:ScriptManager>

Is there any way to do that from a single source like Web.config or Global.asax or using any HTTPHandler.


If you have a BasePage or a Master page then you could find the controls before the render event and modify it's properties


You could simply use a search-and-replace regex to do this job. :)


I have made an user control and placed the ajax calendar code in that. After that I replaced the Ajax calendar in the page with the user control.

Now for changing globally I can change it from the single user control.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜