ASPNETDB管理工具

发布于 2024-07-15 10:47:42 字数 142 浏览 6 评论 0原文

是否有任何工具可以管理已部署的 ASP.NET 应用程序的 aspnetdb.mdf 文件,类似于 Visual Studio 的 WSAT(“hummer-globe”按钮)?

无法在服务器上安装 Visual Studio 和 SQL 管理工具。

Is there any tools to manage deployed ASP.NET application's aspnetdb.mdf file similar to Visual Studio's WSAT ("hummer-globe" button)?

Installations of the Visual Studio and SQL Managment tools on the server are not possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

尝蛊 2024-07-22 10:47:42

在 Visual Studio 之外启用 ASP.NETWebAdminFiles

...

  1. 创建指向网络管理文件的虚拟目录。

    这就是我所做的:
    虚拟目录:ASP.NetWebAdminFiles
    MappedTo: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ASP.NETWebAdminFiles

  2. 修改虚拟目录的属性,使其在 ASP.NET 2.0 下运行。 (属性> ASP.NET)

    注意:如果您在同一服务器或站点上运行 1.1 和 2.0 应用程序,则可能必须为 2.0 站点设置单独的应用程序池。 如果您收到通知“应用程序不可用”,那么这就是原因。

  3. 当您在那里时,删除对该虚拟目录的匿名访问。

  4. 之后,您将能够使用以下网址语法连接到网络管理工具

    http://localhost/ASP.NETWebAdminFiles/default。 aspx?applicationPhysicalPath=XXX&applicationUrl=/YYY

.. 。

From Enable ASP.NETWebAdminFiles Outside Visual Studio

...

  1. Create a virtual directory that points to the web admin files.

    This is what I did:
    VirtualDirectory: ASP.NetWebAdminFiles
    MappedTo: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ASP.NETWebAdminFiles

  2. Modify the properties of the virtual directory so that it is running under ASP.NET 2.0. (Properties > ASP.NET)

    NOTE: if you are running 1.1 and 2.0 applications on the same server or site, you may have to set up a separate application pool for the 2.0 sites. If you get the notice, "Application Unavailable" then that is why.

  3. While you are there, remove anonymous access to that virtual directory.

  4. After that, you will be able to connect to the web admin tools using the following url syntax

    http://localhost/ASP.NETWebAdminFiles/default.aspx?applicationPhysicalPath=XXX&applicationUrl=/YYY

...

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