I have a program developed in visual studio (windows form) with database in sql-server 2012 and I want to know if I can upload this data to a web page or website.
I have a program developed in visual studio (windows form) with database in sql-server 2012 and I want to know if I can upload this data to a web page or website.
You can use the WebClient Class, which provides common methods for sending data to or receiving data from any local, intranet, or Internet resource identified by a URI.
This class would be used in your Window application and through this it would communicate with the Web application, the latter should implement a Web Service or REST services.