Silverlight - 服务器端应用程序启动时的运行方法
我有一个 Silverlight 应用程序,托管在 ASP.NET 站点中。现在,我需要在应用程序第一次启动时执行一些操作(运行更新数据库的代码)。我正在寻找合适的地方来做到这一点。 有人能帮我把这段代码放在哪里吗? - 谢谢。
I have a Silverlight-Application which is hosted in a ASP.NET-Site. Now, I need to execute something at the first start of the application (run code for update database). I am searching the right place to do this.
Can anybody help me where I have to put this code? - Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加到应用程序类中的
Startup
事件,例如请参阅MSDN。请注意,这在客户端运行 - 而不是服务器端。 silverlight 应用程序中的代码不在服务器上运行。
如果您的代码必须在服务器上运行,请将 silverlight 控件托管在 aspx 页面中,并覆盖该页面的
Page_Load
事件,以在 silverlight 客户端发送到浏览器之前执行代码。You can add to the
Startup
event in your Application class, e.g.See MSDN. Note that this runs on the client side - not the server side. Code in your silverlight application does not run on the server.
If your code has to run on the server, host your silverlight control in an aspx page and override the page's
Page_Load
event to execute code BEFORFE the silverlight client is sent to the browser.