Make a program in c# that runs online

Asked

Viewed 1,431 times

1

Hello, I’m a beginner in programming and I’ve touched a little with c# but very little! In my work was put a proposal for me to make a program in c#, html or java to store the release of company invoices (small company) and as I am the only one from the computer part the son is my rs As I have never dealt with java integrated with databases or html I am thinking of making the form in C# for the data to be stored on the server here of the company and my boss would like to have the possibility to be made the query and the release of the data via web as well. Open the program, be connected on the internet, enter the data and bang, are in the server database even without being local network. Is that possible? And if so, could someone help me by giving me some cool website or something? It’s my first job, I’m still an intern, but I want to do it well! Thanks in advance!

2 answers

4

For the development of the page communicating with the database being offline/online you will use some programming language that in your case would be C# or Java.

In the case of Html is just a markup language, it is with it that you "mount" the page and the browser shows to the user. Depending on whether you use WebForms C# you don’t even need to know much about Html because it will generate everything automatic according to the components used.

As your need covers many things I advise looking for some tutorial or video lesson on WebForms C#, I can’t just give you the codes. After you manage to build your site only remains you host it and it will be possible to access from anywhere.

Then follow the study sequence:

  • Difference between Programming Language and Markup Language.
  • Development of pages with WebForms in C#
  • Communication with the database if you use the IDE Visual Studio integration with the SQL Server it’s very simple.
  • Hosting of WEB applications.

Study!

  • Yes, I will study and much to do it, also because I do not want to simply do I want to learn. I just really wanted to know if it is possible, for example, to create the program by Visual Studio C#, create a database and then integrate them online. From what you said, I understood that it would be "easier" to do the page on html and use the forms html for inserting and displaying database data.

  • http://www.devmedia.com.br/criando-um-web-project-visual-studio-e-c/20168

  • 1

    Just to make it clear that with C# for the WEB the keyword is ASP.NET. The Webforms It’s just a way to use ASP.NET. Although Webforms seems simpler at first, I would recommend it to those who are starting to use ASP.NET MVC, as it abstracts less HTML and HTTP communication. If she’s going to have to learn how to code for the Web it’s better to do it in a more transparent way.

  • @Marcusvinicius For those who have ease with programming and understand the flow really MVC is easier, but for learning I believe that Webforms is easier.

  • @kaamis Here’s an example with a database: http://csharpbrasil.com.br/development-de-website-com-asp-net-e-sql-server-parte-1/

  • 1

    Thank you guys, I’m gonna take a look around and work my way up. I received the proposal today, I still have no deadline but, as I have never touched this integration online I want to ensure a base to study at least. Especially since I’m practically alone in this.

Show 1 more comment

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.