zahid mahmood
zahid mahmood

Reputation: 1

Online c# application

I'm trying to develop a payroll application with a C# front end and Oracle XE database backup.

My application works fine in a local system.

I want to deploy it online. Simply run a setup file on client system, or type an IP address in browser and my application will open.

How can I do this?

Upvotes: 0

Views: 565

Answers (1)

Andy White
Andy White

Reputation: 88395

Not sure if this is what you're looking for, but here is a possible option:

ClickOnce Deployment

ClickOnce allows you to deploy Windows apps in a consistent, controlled manner. You can host the deployment on a web site, a network file share, or in a couple other configurations.

Upvotes: 3

Related Questions