How to build up a website for user and collect the data & picture information into database ? what kind of sever service I need to use ?

Tseng, Venson 0 Reputation points
2024-02-26T16:28:25.3933333+00:00

Hi everyone, many thanks for your time, may I know how to build up a website and collect the data & picture information into database ? what kind of sever service I need to use ? I know question are a little bit big, or small, I think I need to get some key advice then I will start to learn from internet. Thanks in advance !

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,787 questions
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,566 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,664 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Pramod Valavala 20,616 Reputation points Microsoft Employee
    2024-02-26T18:45:23.0333333+00:00

    @Tseng, Venson This is a broad question with no one answer and would depend on many factors like tech stack, scale, etc. But I will try to provide an Azure specific answer with options to various components involved in an application like this.

    Firstly, you will need to post your service somewhere. Some options here would be Azure App Service, Azure Functions, and Azure Container Apps. For the first and last options, you are free to choose any language/framework you are most familiar with.

    Then you need one place to store non-files, so a database like Azure CosmosDB or one of the Azure Database offerings like PostgreSQL. You could even use something like Azure Table within a Storage Account if you'd like to keep costs low for a small project.

    Finally, for the pictures themselves (or any files), you would use Azure Blob Storage which is designed to store/retrieve any file at scale. Typically, you would upload a file here and link to it in your database entries.

    PS: If you open to it, explore Azure Functions which allows you to use bindings to quickly integrate these services together without writing a lot of code.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.