This is the asp.NET webapp which i need to get after publishing from visual studio
But after hosting the webapp in IIS server and when i browse i get the localhost like this
This is the asp.NET webapp which i need to get after publishing from visual studio
But after hosting the webapp in IIS server and when i browse i get the localhost like this
Open IIS Manager,Click on your site, under IIS there is an icon labeled "Directory Browsing".Double-click it, then click Disable under Actions. Or disable directory browsing by pasting the following in web.config:
<system.webServer>
<directoryBrowse enabled="false" />
</system.webServer>
Then you need to set SignUp.aspx
as default document, refer to the following steps:
SignUp.aspx
.