在代码背后我有这段代码:
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "FetchFacebook", "FetchFeeds('facebook');", true);
并在javascript函数FetchFeeds()
内部我调用WebServer。 JS引用它是ScriptManager
,它在代码隐藏后的页面上注册。
所以当我打电话给FetchFeeds
时,还没有网络服务参考。
如何选择何时从代码隐藏中调用FetchFeeds()
?