ASPNETDB管理工具
是否有任何工具可以管理已部署的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 在 Visual Studio 之外启用 ASP.NETWebAdminFiles
...
创建指向网络管理文件的虚拟目录。
这就是我所做的:
虚拟目录:ASP.NetWebAdminFiles
MappedTo: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ASP.NETWebAdminFiles
修改虚拟目录的属性,使其在 ASP.NET 2.0 下运行。 (属性> ASP.NET)
注意:如果您在同一服务器或站点上运行 1.1 和 2.0 应用程序,则可能必须为 2.0 站点设置单独的应用程序池。 如果您收到通知“应用程序不可用”,那么这就是原因。
当您在那里时,删除对该虚拟目录的匿名访问。
之后,您将能够使用以下网址语法连接到网络管理工具
http://localhost/ASP.NETWebAdminFiles/default。 aspx?applicationPhysicalPath=XXX&applicationUrl=/YYY
.. 。
From Enable ASP.NETWebAdminFiles Outside Visual Studio
...
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
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.
While you are there, remove anonymous access to that virtual directory.
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
...