Hi,
Can any body tell me step by step, how to upload an asp.net site at booked domain.
Regards
Maurya
Hi,
Can any body tell me step by step, how to upload an asp.net site at booked domain.
Regards
Maurya
Short primer that fills gaps in the replies from and — the two quick things most beginners miss are: (1) pointing the domain name at the hosting server, and (2) the server-side binding and file-permission details that let IIS serve your files reliably.
Typical minimal workflow
www if you use it). DNS changes can take hours to propagate. Key server configuration notes
No Managed Code when proxying ASP.NET Core to Kestrel). For modern app pools prefer the built-in ApplicationPoolIdentity and give that identity NTFS access to the site folder (especially App_Data and bin) — e.g. grant IIS APPPOOL\YourAppPool Modify rights. More on app-pool identities here. Troubleshooting pointers
customErrors to show detailed errors for debugging (turn it off in production). bin.If the host supports Web Deploy, it simplifies updates and permissions; otherwise FTP plus careful NTFS permissions and correct bindings will get a site live.
Jump to Post— ericstenson 5You will need a server running IIS with the ASP.NET extensions. You can either go hosted or set one up yourself.
After that, build the site in VS to the /inetpub/wwwroot folder
Make sure ASP.NET version # is correct in the IIS Website properties and also make sure …
You will need a server running IIS with the ASP.NET extensions. You can either go hosted or set one up yourself.
After that, build the site in VS to the /inetpub/wwwroot folder
Make sure ASP.NET version # is correct in the IIS Website properties and also make sure permissions are set properly.
Not really too hard...
Visual Studio has a fantastic 'Publish Web Site' option under the Build menu. It's super easy to use and has some properties you can play with. The biggest challenge most people find is the security permissions on their application folder on the server. Just make sure that you set that up properly.
MSDN has a good step-by-step article which can be found at: (VS.80).aspx
Good luck!
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.