asp.net - where is Web Site Administration on visual studio 2015 -
i cannot found web site administration tool in visual studio 2015. it?
it used on menu "website > administration tool" or "project > administration tool" not anymore.
i experienced same issue. can via iis or did, copy development folder future use. here 2 options...
1. launch web site admin tool using command window:
open command window running admin
change folder iis express:
cd c:\program files\iis express\
- run following command start iis express:
iisexpress.exe /path:c:\windows\microsoft.net\framework\v4.0.30319\asp.netwebadminfiles /vpath:"/asp.netwebadminfiles" /port:8082 /clr:4.0 /ntlm
- access admin site via following url: http://localhost:8082/asp.netwebadminfiles/default.aspx?applicationphysicalpath=c:[your site path here]\&applicationurl=/
2. launch web site admin tool using iis: can try running site windows folder after couple of issues moved folder. steps below cover process.
copy admin site following folder: c:\windows\microsoft.net\framework\v4.0.30319\asp.netwebadminfiles
change web.config allow user access site
setup site in iis. set authentication shown below. use following url manage asp.net site.
http://localhost/aspnetadmin/default.aspx?applicationphysicalpath=c:[your site path here]\&applicationurl=/
Comments
Post a Comment