where is Web Site Administration on visual studio 2015

前端 未结 3 397
别跟我提以往
别跟我提以往 2020-12-28 19:42

I cannot found Web Site Administration Tool in visual studio 2015. where is it?

It used to be on menu \"website > Administration Tool\" or \"Project > Administration

3条回答
  •  伪装坚强ぢ
    2020-12-28 20:16

    I was starting out brand new without a web.config file set up. This is what I did.

    (You must have a local sql server running for this) Register your sql server with asp.net:

    1. Open a command prompt and change directory to .net
    cd  \Microsoft.Net\Framework\\
    
    1. Type aspnet_regsql
    2. Go through wizard to set up your database
    3. Go to your website project and edit your web.config file
    4. Add these configurations, updating them for your userid, password, etc.
            
          
            
          
        
        
      
         
        
      
      
    
    1. Open a Command Window
    2. Change the folder to IIS Express: cd C:\Program Files\IIS Express\
    3. Run the following command to start up IIS Express:
    iisexpress.exe /path:C:\Windows\Microsoft.NET\Framework\\ASP.NETWebAdminFiles /vpath:"/ASP.NETWebAdminFiles" /port:8082 /clr:4.0 /ntlm
    
    1. Access the Admin Site via the following URL
     http://localhost:8082/asp.netwebadminfiles/default.aspx?applicationPhysicalPath=C:[YOURSITEPATHHERE]\&applicationUrl=/
    

提交回复
热议问题