I was tasked to automate a small tool using Web Forms
.
We have figured out that deploying it into a web server would not be worth it since the application is only comprised of one .aspx
page, playing around with UpdatePanels
, exporting the required PDF
with the consolidated numbers, etc. No database was involved. The calculations are done on postbacks
.
Is it possible to create an installer instead? Like the idea of being able to use the app after they run the installer that they received?
Or only deploying locally
is the ONLY work around on hosting it on a web server
?
My team won't be using the automated tool. We automated the task so that the requestor could generate the results on their own using the tool. It is also my first time deploying a project.
Thank you very much!