What should I do so that I can upload tables(of data from Visual Studio) over the int

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lpgdetection
    New Member
    • Oct 2014
    • 2

    What should I do so that I can upload tables(of data from Visual Studio) over the int

    I have data that I already gathered using the loops I made in a microcontroller . Then it will go to a GUI made in Visual C#. I need those data to be accessed through the Internet. Are there any websites that cater C# well enough? How can I upload information through the internet using visual studio? Please enlighten me.

    After that, I am quite confused in what method to use so that I can upload the files and access them, like what syntax to use and such.

    Last thing, I also wanted to know if I know a specific IP address of a free webhosting site (for example, 000webhost), does it mean that I can use the Parse method of C# and access it? Thank you.


    P.S. I just need to upload an array/table of data through the Internet that can be accessed by multiple clients.
    Last edited by lpgdetection; Oct 23 '14, 11:58 AM. Reason: The complete questions is: "What should I do so that I can upload tables (of data from Visual Studio) to the internet and can be accessed by other computers too?"
  • iam_clint
    Recognized Expert Top Contributor
    • Jul 2006
    • 1207

    #2
    Well what I would do is get some we hosting that offers a database. Then I would create a page that handles the data in post form. Then use my c# program post the data to that page. Then have that page handle the data and put it in the database. And at last make a page to pull the data on request. This is based on the assumption that I understand your question correctly.

    Comment

    • lpgdetection
      New Member
      • Oct 2014
      • 2

      #3
      I think you got my point actually, but do you have any idea on how I can post those data I mentioned using C#? I mean, what syntax do I have to follow? Sorry, I just learned C# programming a few months ago, so I'm new to C# syntax.

      Comment

      • iam_clint
        Recognized Expert Top Contributor
        • Jul 2006
        • 1207

        #4
        Learn how to make HTTP requests and handle responses with the HttpClient in .NET.

        Comment

        Working...