Silverlight - 服务器端应用程序启动时的运行方法

发布于 2024-12-12 00:10:35 字数 121 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自此以后,行同陌路 2024-12-19 00:10:35

您可以添加到应用程序类中的 Startup 事件,例如

public partial class App : Application
{

    private void Application_Startup(object sender, StartupEventArgs e)
    { 
       ... startup code here
    }
}

请参阅MSDN。请注意,这在客户端运行 - 而不是服务器端。 silverlight 应用程序中的代码不在服务器上运行。

如果您的代码必须在服务器上运行,请将 silverlight 控件托管在 aspx 页面中,并覆盖该页面的 Page_Load 事件,以在 silverlight 客户端发送到浏览器之前执行代码。

You can add to the Startup event in your Application class, e.g.

public partial class App : Application
{

    private void Application_Startup(object sender, StartupEventArgs e)
    { 
       ... startup code here
    }
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文