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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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
…