Make program in C # that runs online [closed]

1

Hello, I'm a beginner in programming and I'm already a little 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 the company's invoices (small company) and as I am the only one of the computer part the son is my rs As I never moved with java integrated with database nor html I'm 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 the possibility to be made the consultation and the launching of the data via web also. Opening the program, being connected to the internet, typing data and pimba, are in the same server database without being local network. Is that possible? And if so, could anyone help me by giving some cool site or something? It's my first job, I'm still an intern, I want to do well! Thank you!

    
asked by anonymous 05.06.2015 / 19:32

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 do not even know much about Html because it will generate everything automatically according to the components used.

As your need addresses many things I advise you to look for some tutorial or video lesson on WebForms C# , not to simply pass the codes. Once you can build your site, you only have to host it and you can access it 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 are going to use IDE Visual Studio , integration with SQL Server is very simple.
  • Hosting web applications.

Study!

    
05.06.2015 / 19:47
0

The leading technology for building Web solutions in C # is called ASP.NET MVC. There are some tags for her here on the site, such as post-tag" title="show questions tagged ' asp.net-mvc-5 '"> asp.net-mvc-5 . You can view the questions and answers in these tags or search for tutorials at link .

I made a response with a face tutorial that can also be used . It is very handy and takes just a few minutes to set up a website with a few screens.

    
05.06.2015 / 20:38